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

:root {
  --maple-red: #c8102e;
  --maple-dark: #8b0000;
  --deep-navy: #0a1628;
  --warm-cream: #faf8f3;
  --gold-accent: #d4af37;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --border-subtle: #e8e4dc;
}

body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-cream);
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--maple-red) 0%,
    var(--maple-dark) 100%
  );
  color: white;
  padding: 14px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.age-gate strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}

header {
  background: white;
  padding: 24px 0;
  border-bottom: 2px solid var(--border-subtle);
  margin-top: 52px;
  position: sticky;
  top: 52px;
  z-index: 999;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--maple-red);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

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

.nav-links a:hover {
  color: var(--maple-red);
}

.btn-primary {
  background: var(--maple-red);
  color: white;
  padding: 11px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--maple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--maple-red);
  padding: 11px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  border: 2px solid var(--maple-red);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--maple-red);
  color: white;
}

.hero {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, white 0%, var(--warm-cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, -50px);
  }
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  background: var(--gold-accent);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--deep-navy);
}

.hero p {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  background: linear-gradient(135deg, #fff3e6 0%, #ffe8d1 100%);
  padding: 32px;
  border-radius: 12px;
  border-left: 5px solid var(--gold-accent);
  margin: 60px 0;
}

.disclaimer h3 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.disclaimer p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.disclaimer ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.disclaimer li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
}

.disclaimer li::before {
  content: "✓";
  color: var(--gold-accent);
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  color: var(--maple-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

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

.jackpot-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.jackpot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--maple-red), var(--gold-accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.jackpot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.15);
  border-color: var(--maple-red);
}

.jackpot-card:hover::before {
  opacity: 1;
}

.jackpot-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--maple-red), var(--gold-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.jackpot-card h3 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 24px;
  color: var(--deep-navy);
  margin-bottom: 14px;
}

.jackpot-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gold-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-item h4 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 20px;
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.step-item p {
  color: var(--text-muted);
  font-size: 15px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--maple-red);
}

.faq-item h4 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 20px;
  color: var(--deep-navy);
  margin-bottom: 14px;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.warning-box {
  background: linear-gradient(135deg, #fff3f3 0%, #ffe5e5 100%);
  border: 2px solid var(--maple-red);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
}

.warning-box h4 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 22px;
  color: var(--maple-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.warning-box ul {
  list-style: none;
  padding-left: 0;
}

.warning-box li {
  padding: 10px 0;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.warning-box li::before {
  content: "⚠️";
  flex-shrink: 0;
}

.form-container {
  max-width: 480px;
  margin: 60px auto;
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.form-container h2 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 32px;
  color: var(--deep-navy);
  margin-bottom: 12px;
  text-align: center;
}

.form-container p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maple-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.form-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.form-footer a {
  color: var(--maple-red);
  text-decoration: none;
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

.content-page {
  padding: 60px 0 80px;
  background: white;
}

.content-header {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.content-header h1 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 44px;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.content-header p {
  font-size: 18px;
  color: var(--text-muted);
}

.content-body {
  max-width: 860px;
  margin: 0 auto;
}

.content-body h2 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 32px;
  color: var(--deep-navy);
  margin: 48px 0 20px;
}

.content-body h3 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 24px;
  color: var(--deep-navy);
  margin: 36px 0 16px;
}

.content-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-body ul,
.content-body ol {
  margin: 20px 0 20px 24px;
  color: var(--text-muted);
}

.content-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.content-body a {
  color: var(--maple-red);
  text-decoration: underline;
}

.content-body a:hover {
  color: var(--maple-dark);
}

.info-box {
  background: var(--warm-cream);
  border-left: 4px solid var(--gold-accent);
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.info-box p {
  margin-bottom: 0;
}

.mpc-footer {
  background-color: #121b2e;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}

.mpc-footer .container-xxl {
  max-width: 1200px;
  margin-inline: auto;
  padding: 48px 24px 40px;
}

.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 .navbar-brand img {
  display: block;
  height: 42px;
  width: auto;
}

.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 .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

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

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

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

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

.mpc-footer .nav-pages .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-top: 1px solid #1f2937;
}

.mpc-footer .text-center {
  text-align: center;
}

.mpc-footer .pt-3 {
  padding-top: 18px;
}

.mpc-footer .mt-4 {
  margin-top: 40px;
}

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

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

@media (max-width: 991px) {
  .mpc-footer .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

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

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

@media (max-width: 575px) {
  .mpc-footer .container-xxl {
    padding: 36px 24px 32px;
  }

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

  .form-container {
    padding: 32px 24px;
  }

  .hero {
    padding: 50px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 50px 0;
  }
}

.jackpot-icon i,
.card-icon i {
  color: white;
  font-size: 32px;
}

.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.age-modal-content {
  background: white;
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-modal-header {
  background: linear-gradient(
    135deg,
    var(--maple-red) 0%,
    var(--maple-dark) 100%
  );
  color: white;
  padding: 32px;
  text-align: center;
}

.age-modal-header i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.age-modal-header h2 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.age-modal-body {
  padding: 32px;
}

.age-modal-body p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.age-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn-age-confirm,
.btn-age-decline {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-age-confirm {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: white;
}

.btn-age-confirm:hover {
  background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.btn-age-decline {
  background: #f8f9fa;
  color: var(--text-dark);
  border: 2px solid #dee2e6;
}

.btn-age-decline:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.age-modal-footer {
  background: #f8f9fa;
  padding: 20px 32px;
  text-align: center;
  border-top: 1px solid #dee2e6;
}

.age-modal-footer small {
  color: var(--text-muted);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: bottom 0.4s ease-out;
  border-top: 3px solid var(--maple-red);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--maple-red) 0%,
    var(--maple-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-icon i {
  color: white;
  font-size: 28px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.cookie-text p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--maple-red);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--maple-dark);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-cookie-accept {
  background: linear-gradient(
    135deg,
    var(--maple-red) 0%,
    var(--maple-dark) 100%
  );
  color: white;
}

.btn-cookie-accept:hover {
  background: linear-gradient(135deg, var(--maple-dark) 0%, #6b0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}

.btn-cookie-decline {
  background: white;
  color: var(--text-dark);
  border: 2px solid #dee2e6;
}

.btn-cookie-decline:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cookie-icon {
    width: 48px;
    height: 48px;
  }

  .cookie-icon i {
    font-size: 24px;
  }

  .cookie-text h4 {
    font-size: 18px;
  }

  .cookie-text p {
    font-size: 14px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    width: 100%;
    justify-content: center;
  }

  .age-modal-actions {
    flex-direction: column;
  }

  .age-modal-header h2 {
    font-size: 24px;
  }

  .age-modal-body {
    padding: 24px;
  }
}
