:root {
  --primary-blue: #003da5;
  --light-blue: #4a90e2;
  --silver: #c0c0c0;
  --dark-text: #1a1a1a;
  --gray-text: #555555;
  --light-bg: #f8f9fb;
  --white: #ffffff;
  --gold: #ffd700;
  --green: #27ae60;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-text);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.25rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.age-gate {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.age-gate strong {
  color: var(--gold);
  font-weight: 700;
}

.site-header {
  background: white;
  border-bottom: 2px solid var(--light-bg);
  padding: 20px 0;
  position: sticky;
  top: 37px;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 61, 165, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-link {
  color: var(--dark-text);
  font-weight: 500;
  padding: 8px 16px;
}

.btn-link:hover {
  color: var(--primary-blue);
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: #002a75;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 61, 165, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: white;
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

.hero-section {
  background: linear-gradient(135deg, #e8f4ff 0%, #ffffff 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 61, 165, 0.1);
  color: var(--primary-blue);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge i {
  color: var(--gold);
}

.hero-section h1 {
  margin-bottom: 24px;
  color: var(--dark-text);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-text);
  font-weight: 500;
}

.trust-item i {
  font-size: 24px;
  color: var(--primary-blue);
}

section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid var(--light-bg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 30px rgba(0, 61, 165, 0.12);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-icon.blue {
  background-color: rgba(0, 61, 165, 0.1);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.feature-card h3 {
  margin-bottom: 12px;
  text-align: center;
}

.feature-card p {
  color: var(--gray-text);
  line-height: 1.8;
  text-align: center;
}

.info-panel {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 5px solid var(--primary-blue);
}

.info-panel.warning {
  background: #fff8f0;
  border-left-color: #ff9800;
}

.info-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.info-panel-header i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.info-panel.warning .info-panel-header i {
  color: #ff9800;
}

.info-panel-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: var(--gray-text);
  line-height: 1.7;
}

.info-list li i {
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--primary-blue);
}

.info-panel.warning .info-list li i {
  color: #ff9800;
}

.games-section {
  background: white;
}

.game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  border: 2px solid var(--light-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.game-visual {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.game-badge.blue {
  background: var(--primary-blue);
}

.game-badge.gold {
  background: var(--gold);
  color: var(--dark-text);
}

.game-badge.green {
  background: var(--green);
}

.game-details {
  padding: 50px;
}

.game-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--light-bg);
  flex-wrap: wrap;
  gap: 16px;
}

.game-title-row h3 {
  font-size: 2.2rem;
  color: var(--primary-blue);
}

.game-tag {
  background: rgba(0, 61, 165, 0.1);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
}

.game-intro {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.game-rules-box,
.game-prizes-box,
.game-guidance-box {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.game-guidance-box {
  background: #fff8f0;
}

.game-rules-box h4,
.game-prizes-box h4,
.game-guidance-box h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.game-guidance-box h4 {
  color: #ff9800;
}

.game-stats-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.game-stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 2px solid rgba(0, 61, 165, 0.1);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray-text);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: "Poppins", sans-serif;
}

.how-section {
  background: var(--light-bg);
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step-number {
  min-width: 60px;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.step-content p {
  color: var(--gray-text);
  line-height: 1.8;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.faq-item {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.faq-item h3 i {
  font-size: 1.3rem;
}

.faq-item p {
  color: var(--gray-text);
  line-height: 1.8;
}

.faq-item a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.responsible-section {
  background: var(--light-bg);
}

.warning-panel {
  background: white;
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 50px;
  border: 3px solid var(--primary-blue);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.warning-header i {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

.warning-header h3 {
  font-size: 2rem;
  color: var(--primary-blue);
}

.warning-content p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.warning-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

.warning-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--light-bg);
  text-align: center;
}

.warning-item i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
}

.warning-item h4 {
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.warning-item p {
  color: var(--gray-text);
  line-height: 1.7;
}

.help-panel {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
  border-left: 5px solid var(--green);
}

.help-panel h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.help-panel p {
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.7;
}

.help-panel a {
  color: var(--green);
  text-decoration: underline;
}

.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-modal {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.age-modal-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.age-modal h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.age-modal p {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.age-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  border: none;
  transition: all 0.3s;
}

.age-btn-yes {
  background: var(--primary-blue);
  color: white;
}

.age-btn-yes:hover {
  background: #002a75;
}

.age-btn-no {
  background: #e0e0e0;
  color: #2d2d2d;
}

.age-btn-no:hover {
  background: #d0d0d0;
}

.age-modal-hidden {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 3px solid var(--primary-blue);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: #2d2d2d;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.3s;
}

.cookie-accept {
  background: var(--primary-blue);
  color: white;
}

.cookie-accept:hover {
  background: #002a75;
}

.cookie-decline {
  background: #e0e0e0;
  color: #2d2d2d;
}

.cookie-decline:hover {
  background: #d0d0d0;
}

.mpc-footer {
  background-color: #121b2e;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.mpc-footer.border-slate {
  border-color: #1f2937 !important;
}

.mpc-footer .container-xxl {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 48px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.mpc-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.mpc-footer a:hover {
  color: #ffffff;
}

.mpc-footer .navbar-brand {
  padding: 0;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 600;
}

.mpc-footer p {
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 15px;
}

.mpc-footer a[href*="responsiblegambling.org"] {
  color: #63ac8d;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.mpc-footer > .container-xxl > .row {
  display: flex;
  flex-wrap: wrap;
}

.mpc-footer > .container-xxl > .row > .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mpc-footer > .container-xxl > .row > .col-md-6 {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}

.mpc-footer > .container-xxl > .row > .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mpc-footer .nav-pages > .row {
  display: flex;
  flex-wrap: wrap;
}

.mpc-footer .nav-pages > .row > .col-6 {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
}

.mpc-footer .nav-pages {
  margin-top: 40px;
}

.mpc-footer .label-nav {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}

.mpc-footer .nav-pages a {
  display: block;
  font-size: 14px;
  color: #e5e7eb;
  opacity: 0.86;
  margin-bottom: 6px;
}

.mpc-footer .nav-pages a:hover {
  opacity: 1;
}

.mpc-footer .logo-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 4px;
}

.mpc-footer .logo-trust .age18 {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #f04242;
  background: #121b2e;
  color: #f04242;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mpc-footer .logo-trust img {
  display: block;
  height: 38px;
  width: auto;
}

.mpc-footer .border-top.border-secondary {
  border-color: #1f2937 !important;
}

.mpc-footer .text-center.pt-3.mt-4 {
  padding-top: 18px !important;
  margin-top: 40px !important;
}

.mpc-footer .small {
  color: #9ca3af;
  line-height: 1.5;
}

.mpc-footer .small.fw-bold {
  color: #e5e7eb;
}

.py-4 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.gy-2 {
  row-gap: 8px;
}
.mb-4 {
  margin-bottom: 24px;
}
.mb-md-0 {
  margin-bottom: 0;
}
.mb-3 {
  margin-bottom: 16px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-1 {
  margin-bottom: 4px;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-4 {
  margin-top: 24px;
}
.pt-3 {
  padding-top: 18px;
}
.gap-2 {
  gap: 8px;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.text-center {
  text-align: center;
}
.border-top {
  border-top: 1px solid;
}
.border-secondary {
  border-color: #1f2937;
}
.fw-semibold {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding: 70px 0;
  }

  .hero-image-wrapper {
    width: 300px;
    height: 300px;
  }

  section {
    padding: 70px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-large {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }

  .game-details {
    padding: 36px;
  }

  .game-stats-row {
    flex-direction: column;
  }

  .warning-list {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mpc-footer > .container-xxl > .row > .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mpc-footer .nav-pages {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .age-modal {
    padding: 36px 28px;
  }

  .age-modal-buttons {
    flex-direction: column;
    width: 100%;
  }

  .age-btn {
    width: 100%;
  }

  .game-visual {
    height: 250px;
  }

  .game-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-wrapper {
    width: 250px;
    height: 250px;
  }

  .trust-item {
    font-size: 14px;
  }

  .trust-item i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .hero-section {
    padding: 50px 0;
  }

  .hero-image-wrapper {
    width: 200px;
    height: 200px;
    opacity: 0.1;
  }

  section {
    padding: 50px 0;
  }

  .game-details {
    padding: 28px;
  }

  .game-rules-box,
  .game-prizes-box,
  .game-guidance-box {
    padding: 24px;
  }

  .warning-panel {
    padding: 32px 24px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step-number {
    margin-bottom: 16px;
  }

  .info-panel {
    padding: 28px 20px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .faq-item {
    padding: 24px 20px;
  }

  .age-gate {
    font-size: 11px;
    padding: 10px 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }

  .game-visual {
    height: 200px;
  }

  .game-title-row h3 {
    font-size: 1.8rem;
  }

  .mpc-footer .container-xxl {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .mpc-footer .nav-pages > .row > .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .mpc-footer .logo-trust {
    gap: 14px;
  }

  .mpc-footer .logo-trust .age18 {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .mpc-footer .logo-trust img {
    height: 30px;
  }
}
