/* ============================================================
   SOUTHERN CROSS LOTTERY — Premium Dark Theme v4 (full rewrite)
   Fonts : Playfair Display (headings) + DM Sans (body)
   Palette: navy #0a0f1e · gold #d4a843 · teal #00c9b1 · cream #f5f0e8
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── RESET & TOKENS ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2340;
  --gold: #d4a843;
  --gold-lt: #f0c96a;
  --gold-dk: #a8832e;
  --teal: #00c9b1;
  --cream: #f5f0e8;
  --cream-dim: #c9c2b3;
  --white: #ffffff;
  --danger: #e05555;
  --success: #2eb87e;
  --warning: #f0c050;
  --sg: rgba(212, 168, 67, 0.25);
  --bd: rgba(212, 168, 67, 0.15);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: var(--cream);
  background: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dk);
  border-radius: 3px;
}
section {
  background: var(--navy);
}

/* ── NAVIGATION ── */
.main-header {
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-star {
  font-size: 1.5rem;
  color: var(--gold);
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.domain-url {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--bd);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
}
.mobile-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}
.nav-menu a {
  color: var(--cream-dim);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}
.btn-login {
  border: 1px solid var(--bd) !important;
  color: var(--cream) !important;
  background: transparent !important;
}
.btn-login:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: 0 4px 14px var(--sg);
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--sg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  box-shadow: 0 4px 16px var(--sg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px var(--sg);
}
.btn-secondary {
  background: rgba(0, 201, 177, 0.1);
  color: var(--teal);
  border: 1px solid rgba(0, 201, 177, 0.28);
}
.btn-secondary:hover {
  background: rgba(0, 201, 177, 0.18);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--bd);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-danger {
  background: var(--danger);
  color: var(--white);
}
.btn-large {
  padding: 0.9rem 2rem;
  font-size: 0.98rem;
}
.btn-small {
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.outback-bg,
.northern-lights-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 15% 50%,
      rgba(212, 168, 67, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 75% at 80% 20%,
      rgba(0, 201, 177, 0.07) 0%,
      transparent 55%
    );
}
.hero-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(212, 168, 67, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 700px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-title i {
  color: var(--gold);
  margin-right: 0.1em;
}
.pulse-icon {
  animation: glow 2.5s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(212, 168, 67, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(212, 168, 67, 0.85));
  }
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.age-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 192, 80, 0.07);
  border: 1px solid rgba(240, 192, 80, 0.22);
  color: var(--warning);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}

/* ── TICKER ── */
.results-ticker {
  background: var(--navy-light);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 0.65rem 0;
  overflow: hidden;
}
.results-ticker .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker-label {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  padding: 0.28rem 0.85rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-content {
  display: flex;
  gap: 3rem;
  animation: tick 30s linear infinite;
  white-space: nowrap;
  font-size: 0.83rem;
  color: var(--cream-dim);
}
.ticker-content span::before {
  content: "◆ ";
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.6rem;
}
@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION HEADINGS ── */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.55rem;
}
.section-title i {
  color: var(--gold);
  margin-right: 0.25em;
}
.section-subtitle {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-bottom: 1px solid var(--bd);
  padding: 46px 0;
}
.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.page-header h1 i {
  color: var(--gold);
}
.page-header p {
  color: var(--cream-dim);
}

/* ── LOTTERY CARDS ── */
.lottery-showcase {
  padding: 90px 0;
}
.lottery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lottery-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 34px 26px 28px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.lottery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.tatts-loto::before {
  background: linear-gradient(90deg, #00529b, #0099cc);
}
.powerball::before {
  background: linear-gradient(90deg, #e30613, #ff4655);
}
.weekday-windfall::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.lottery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.38);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.42),
    0 0 28px var(--sg);
}
.lottery-card.featured {
  border-color: rgba(212, 168, 67, 0.3);
  background: linear-gradient(
    155deg,
    var(--navy-light) 0%,
    rgba(212, 168, 67, 0.04) 100%
  );
}
.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 50px;
}
.lottery-icon {
  height: 76px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.3rem;
}
.tatts-icon {
  background: rgba(0, 82, 155, 0.2);
  color: #5bbfff;
  border: 1px solid rgba(0, 82, 155, 0.35);
}
.powerball-icon {
  background: rgba(227, 6, 19, 0.18);
  color: #ff7080;
  border: 1px solid rgba(227, 6, 19, 0.3);
}
.weekday-icon {
  background: rgba(212, 168, 67, 0.13);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.28);
}
.lottery-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.35rem;
}
.lottery-jackpot {
  text-align: center;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
}
.lottery-description p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.feature-list {
  list-style: none;
  margin-bottom: 1.4rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--cream-dim);
  font-size: 0.82rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.feature-list li:last-child {
  border: none;
}
.feature-list li i {
  color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
}
.lottery-price {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.8rem;
  margin-bottom: 1.1rem;
}
.lottery-price i {
  color: var(--gold);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 90px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dk),
    var(--gold),
    var(--gold-dk),
    transparent
  );
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: 36px 20px;
  position: relative;
  z-index: 1;
}
.step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 1.1rem;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all 0.3s;
}
.step-card:hover .step-icon {
  background: rgba(212, 168, 67, 0.14);
  border-color: rgba(212, 168, 67, 0.38);
  transform: scale(1.08);
}
.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.45rem;
}
.step-card p {
  color: var(--cream-dim);
  font-size: 0.82rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 90px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  transition: transform 0.3s;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-rating {
  margin-bottom: 0.9rem;
}
.testimonial-rating i {
  color: var(--gold);
  font-size: 0.78rem;
}
.testimonial-text {
  color: var(--cream-dim);
  font-size: 0.87rem;
  font-style: italic;
  margin-bottom: 1.3rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author > i {
  font-size: 2rem;
  color: rgba(212, 168, 67, 0.35);
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}
.testimonial-author span {
  color: var(--cream-dim);
  font-size: 0.75rem;
}

/* ── RESPONSIBLE GAMING (index) ── */
.responsible-gaming {
  padding: 60px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.responsible-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(0, 201, 177, 0.04);
  border: 1px solid rgba(0, 201, 177, 0.14);
  border-radius: 16px;
  padding: 38px;
}
.responsible-icon {
  width: 76px;
  height: 76px;
  background: rgba(0, 201, 177, 0.1);
  border: 1px solid rgba(0, 201, 177, 0.28);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--teal);
  flex-shrink: 0;
}
.responsible-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.responsible-text p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

/* ── FOOTER ── */
.site-footer .footer-inner {
  background: var(--navy-mid);
  border-top: 1px solid var(--bd);
  color: var(--cream-dim);
  padding: 34px 30px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.9;
}
.site-footer .footer-inner p {
  margin-bottom: 3px;
}
.site-footer .footer-inner a {
  color: var(--gold);
  text-decoration: none;
}
.site-footer .footer-inner a:hover {
  color: var(--gold-lt);
  text-decoration: underline;
}
.footer-age-warning {
  color: #e05555;
  font-weight: 600;
  margin: 12px 0;
}
.footer-age-warning a {
  color: #777 !important;
  font-weight: 400;
}
.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 14px 0;
  gap: 8px;
}
.footer-imgs img {
  padding: 8px 12px;
  height: 46px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
}
.footer-copy {
  margin-top: 12px !important;
  font-size: 0.73rem !important;
  color: #4a4a4a !important;
}

/* ── FAB ── */
.fab-button {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 22px var(--sg);
  z-index: 999;
  transition: all 0.25s;
}
.fab-button:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px var(--sg);
}

/* ── AGE MODAL ── */
.age-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.age-modal.active {
  display: flex;
}
.age-modal-content {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 20px;
  max-width: 460px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}
.age-modal-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--navy);
}
.age-modal-header i {
  font-size: 1.6rem;
}
.age-modal-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}
.age-modal-body {
  padding: 28px;
}
.age-icon {
  text-align: center;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.age-main-text {
  text-align: center;
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}
.age-sub-text {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.82rem;
  margin-bottom: 1.3rem;
}
.age-warning-box {
  background: rgba(0, 201, 177, 0.05);
  border: 1px solid rgba(0, 201, 177, 0.18);
  border-radius: 10px;
  padding: 13px 15px;
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
  font-size: 0.81rem;
  color: var(--cream-dim);
}
.age-warning-box i {
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.age-warning-box strong {
  color: var(--white);
}
.age-warning-box p {
  margin-top: 1px;
}
.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}
.age-help-text {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  color: var(--cream-dim);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--cream);
  padding: 11px 13px;
  font-size: 0.88rem;
  font-family: "DM Sans", sans-serif;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option {
  background: var(--navy-mid);
}
.form-group textarea {
  resize: vertical;
  min-height: 115px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.error-message {
  color: var(--danger);
  font-size: 0.74rem;
  margin-top: 3px;
  display: block;
  min-height: 16px;
}
.input-invalid {
  border-color: var(--danger) !important;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 1.4rem;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
}
.form-checkbox label {
  color: var(--cream-dim);
  font-size: 0.81rem;
}
.form-checkbox a {
  color: var(--gold);
  text-decoration: none;
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
}
.form-options a {
  color: var(--gold);
  text-decoration: none;
}
.form-section {
  margin-bottom: 2rem;
}
.form-section h3 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bd);
}
.form-note,
.form-help {
  color: var(--cream-dim);
  font-size: 0.75rem;
  margin-top: 4px;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}
.form-intro {
  color: var(--cream-dim);
  font-size: 0.87rem;
  margin-bottom: 1.5rem;
}
.form-container {
  max-width: 680px;
  margin: 0 auto;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.83rem;
  cursor: pointer;
}
.checkbox-label input {
  margin-top: 3px;
  accent-color: var(--gold);
}
.password-input-group {
  position: relative;
}
.password-input-group input {
  padding-right: 42px;
}
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--cream-dim);
  cursor: pointer;
  font-size: 0.9rem;
}
.toggle-password:hover {
  color: var(--gold);
}
.password-strength {
  margin-top: 5px;
  height: 3px;
  border-radius: 2px;
  background: var(--bd);
  overflow: hidden;
}
.forgot-password,
.forgot-link {
  color: var(--gold);
  font-size: 0.8rem;
  text-decoration: none;
}
.form-success,
.success-container {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.success-icon {
  font-size: 3rem;
  color: var(--success);
  display: block;
  margin-bottom: 1rem;
}
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}
.success-message {
  background: rgba(46, 184, 126, 0.1);
  border: 1px solid rgba(46, 184, 126, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--cream-dim);
  font-size: 0.87rem;
}
.success-message i {
  color: var(--success);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── AUTH PAGES ── */
.auth-section {
  padding: 60px 0;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-start;
}
.auth-container,
.registration-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.auth-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.auth-form {
  padding: 28px 30px;
}
.auth-header {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-bottom: 1px solid var(--bd);
  padding: 30px 30px 22px;
  text-align: center;
}
.auth-logo {
  text-align: center;
  margin-bottom: 1rem;
}
.auth-logo i {
  font-size: 3rem;
  color: var(--gold);
}
.auth-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 5px;
}
.auth-header p {
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.auth-footer {
  text-align: center;
  padding: 16px 20px;
  border-top: 1px solid var(--bd);
  font-size: 0.82rem;
  color: var(--cream-dim);
}
.auth-footer a {
  color: var(--gold);
  text-decoration: none;
}
.security-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--bd);
}
.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bd);
  color: var(--cream-dim);
  font-size: 0.84rem;
}
.security-item:last-child {
  border-bottom: none;
}
.security-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.security-item span {
  color: var(--cream-dim);
}
.auth-sidebar {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 26px;
}
.sidebar-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}
.auth-sidebar h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.4rem;
}
.benefits-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.benefits-list li:last-child {
  border: none;
}
.benefits-list li > i {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefits-list li strong {
  color: var(--cream);
  display: block;
  font-size: 0.86rem;
  margin-bottom: 2px;
}
.benefits-list li p {
  color: var(--cream-dim);
  font-size: 0.8rem;
  margin: 0;
}
.sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.4rem;
}
.stat-box {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: var(--cream-dim);
  font-size: 0.75rem;
}
.sidebar-security {
  background: rgba(0, 201, 177, 0.05);
  border: 1px solid rgba(0, 201, 177, 0.15);
  border-radius: 10px;
  padding: 14px;
}
.sidebar-security h4 {
  color: var(--teal);
  font-size: 0.87rem;
  margin-bottom: 6px;
}
.sidebar-security p {
  color: var(--cream-dim);
  font-size: 0.8rem;
  margin: 0;
}
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-dim);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.83rem;
  margin-bottom: 1.2rem;
  transition: color 0.2s;
  font-family: "DM Sans", sans-serif;
}
.back-button:hover {
  color: var(--gold);
}
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bd);
}
.divider span {
  color: var(--cream-dim);
  font-size: 0.78rem;
}
.notice-banner {
  background: rgba(224, 85, 85, 0.07);
  border: 1px solid rgba(224, 85, 85, 0.22);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  margin-bottom: 1.2rem;
  font-size: 0.83rem;
  color: var(--cream-dim);
}
.notice-banner i {
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.verification-notice {
  background: rgba(0, 201, 177, 0.06);
  border: 1px solid rgba(0, 201, 177, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  margin-bottom: 1.2rem;
  font-size: 0.83rem;
  color: var(--cream-dim);
}
.verification-notice i {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── REGISTRATION ── */
.registration-section {
  padding: 60px 0;
}
.registration-header {
  text-align: center;
  margin-bottom: 2rem;
}
.registration-header h1 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 2rem;
}
.registration-header p {
  color: var(--cream-dim);
}
.registration-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  justify-content: center;
}
.form-step {
  flex: 1;
  max-width: 160px;
  padding: 12px 8px;
  text-align: center;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--cream-dim);
  font-size: 0.78rem;
}
.form-step.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.07);
}
.registration-form {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
}
.step {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
}
.step-circle {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.step-content {
  color: var(--cream-dim);
  font-size: 0.87rem;
}
.step-content strong {
  color: var(--white);
  display: block;
}
.upload-placeholder {
  background: var(--navy-mid);
  border: 2px dashed var(--bd);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.upload-placeholder:hover {
  border-color: var(--gold);
}
.upload-placeholder i {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.upload-preview {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-dim);
  font-size: 0.84rem;
}
/* ── REGISTRATION SIDEBAR ── */
.registration-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reg-sidebar-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.reg-sidebar-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}
.registration-sidebar .sidebar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.registration-sidebar .sidebar-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 22px 20px;
}
.game-preferences {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-option {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.85rem;
}
.game-checkbox {
  accent-color: var(--gold);
}

/* ── BUY PAGE ── */
.ticket-builder-section {
  padding: 56px 0;
}
.builder-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}
.builder-container {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 30px;
}
.game-selector {
  margin-bottom: 1.8rem;
}
.game-selector h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.game-tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.game-tab {
  flex: 1;
  min-width: 110px;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--cream-dim);
  font-family: "DM Sans", sans-serif;
}
.game-tab i {
  font-size: 1.3rem;
}
.game-tab span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cream);
}
.game-tab small {
  font-size: 0.7rem;
  color: var(--cream-dim);
}
.game-tab.active,
.game-tab:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold);
}
.game-tab.active span,
.game-tab:hover span {
  color: var(--gold);
}
.game-info {
  margin-bottom: 1.4rem;
}
.info-banner {
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
}
.info-banner h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.info-banner p {
  font-size: 0.81rem;
  opacity: 0.82;
}
.lotto-649-bg {
  background: linear-gradient(135deg, #00529b, #003d7a);
}
.lotto-max-bg {
  background: linear-gradient(135deg, #b00000, #7a0000);
}
.daily-grand-bg {
  background: linear-gradient(135deg, #a8832e, #7a5e1c);
}
.number-selection {
  margin-bottom: 1.8rem;
}
.selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}
.selection-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
}
.selection-label {
  color: var(--cream-dim);
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}
.number-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.65rem;
}
.number-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bd);
  background: var(--navy-mid);
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.17s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.number-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.number-btn.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 9px var(--sg);
}
.number-grid.small .number-btn {
  width: 34px;
  height: 34px;
  font-size: 0.76rem;
}
.selected-numbers {
  font-size: 0.8rem;
  color: var(--cream-dim);
  padding: 8px 11px;
  background: var(--navy-mid);
  border-radius: 6px;
  border: 1px solid var(--bd);
}
.selected-numbers strong {
  color: var(--white);
}
.draw-date-section {
  margin-bottom: 1.8rem;
}
.draw-date-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.date-options {
  display: flex;
  gap: 10px;
}
.radio-card {
  flex: 1;
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.radio-card input {
  display: none;
}
.radio-card:has(input:checked),
.radio-card:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
}
.radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.radio-content i {
  color: var(--gold);
  font-size: 1.1rem;
}
.radio-content strong {
  color: var(--white);
  font-size: 0.85rem;
}
.radio-content span {
  color: var(--cream-dim);
  font-size: 0.75rem;
}
.quantity-section {
  margin-bottom: 1.8rem;
}
.quantity-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.quantity-spinner {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0.45rem;
}
.qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bd);
  background: var(--navy-mid);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.quantity-spinner input {
  width: 65px;
  text-align: center;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 8px;
  font-family: "DM Sans", sans-serif;
}
.quantity-info {
  color: var(--cream-dim);
  font-size: 0.76rem;
}
.promo-section {
  margin-bottom: 1.8rem;
}
.promo-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.promo-input-group {
  display: flex;
  gap: 8px;
}
.promo-input-group input {
  flex: 1;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--cream);
  padding: 10px 13px;
  font-size: 0.86rem;
  font-family: "DM Sans", sans-serif;
}
.promo-input-group input:focus {
  outline: none;
  border-color: var(--gold);
}
.promo-message {
  margin-top: 5px;
  font-size: 0.8rem;
}
.promo-message.success {
  color: var(--success);
}
.promo-message.error {
  color: var(--danger);
}
.action-buttons {
  display: flex;
  gap: 11px;
}
.summary-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.summary-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 20px;
}
.summary-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.summary-card h4 {
  font-size: 0.86rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.cart-items {
  margin-bottom: 0.9rem;
  min-height: 55px;
}
.empty-cart {
  text-align: center;
  color: #555;
  padding: 18px 0;
  font-size: 0.82rem;
}
.empty-cart i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 5px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 0.8rem;
}
.cart-item:last-child {
  border: none;
}
.cart-item-name {
  color: var(--cream);
}
.cart-item-numbers {
  color: var(--cream-dim);
  font-size: 0.73rem;
}
.cart-item-price {
  color: var(--gold);
  font-weight: 600;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  padding: 0 3px;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: var(--danger);
}
.summary-totals {
  border-top: 1px solid var(--bd);
  padding-top: 11px;
  margin-bottom: 1.1rem;
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--cream-dim);
  padding: 3px 0;
}
.total-row.grand-total {
  color: var(--white);
  font-size: 0.95rem;
  padding-top: 7px;
  border-top: 1px solid var(--bd);
  margin-top: 3px;
}
.total-row.discount {
  color: var(--success);
}
.payment-methods {
  margin-top: 0.9rem;
  text-align: center;
}
.payment-methods p {
  color: var(--cream-dim);
  font-size: 0.73rem;
  margin-bottom: 5px;
}
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  color: var(--cream-dim);
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(46, 184, 126, 0.06);
  border: 1px solid rgba(46, 184, 126, 0.18);
  border-radius: 8px;
  padding: 9px 13px;
  margin-top: 11px;
  font-size: 0.78rem;
}
.security-badge i {
  color: var(--success);
  font-size: 1.05rem;
}
.security-badge strong {
  color: var(--white);
  display: block;
}
.security-badge small {
  color: var(--cream-dim);
}
.tips-card ul {
  list-style: none;
}
.tips-card li {
  display: flex;
  gap: 7px;
  color: var(--cream-dim);
  font-size: 0.8rem;
  padding: 3px 0;
}
.tips-card li i {
  color: var(--teal);
}
.age-warning-small {
  color: var(--warning);
  font-size: 0.8rem;
}

/* ── ABOUT PAGE ── */
.about-intro {
  padding: 60px 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--bd);
}
.intro-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: center;
}
.intro-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.intro-text p {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
  line-height: 1.7;
}
.intro-image {
  border-radius: 14px;
  overflow: hidden;
}
.image-placeholder {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 0.85rem;
  padding: 32px;
  text-align: center;
}
.image-placeholder i {
  font-size: 2.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.about-section {
  padding: 80px 0;
}
.about-section.alt-bg {
  background: var(--navy-mid);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.about-text p {
  color: var(--cream-dim);
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 1.5rem;
}
.stat-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: var(--cream-dim);
  font-size: 0.78rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(212, 168, 67, 0.32);
  transform: translateY(-3px);
}
.feature-card i {
  font-size: 1.9rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}
.feature-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}
.feature-card p {
  color: var(--cream-dim);
  font-size: 0.81rem;
}
.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 1.5rem;
}
.cert-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.cert-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.cert-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 0.6rem;
}
.cert-card p {
  color: var(--cream-dim);
  font-size: 0.82rem;
}
.guarantee-box {
  background: rgba(0, 201, 177, 0.05);
  border: 1px solid rgba(0, 201, 177, 0.18);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 20px 0;
}
.guarantee-box h3 {
  color: var(--teal);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.guarantee-box p,
.guarantee-box li {
  color: var(--cream-dim);
  font-size: 0.87rem;
}
.support-section {
  padding: 80px 0;
  background: var(--navy-mid);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 26px;
  text-align: center;
  transition: all 0.3s;
}
.support-card:hover {
  border-color: rgba(0, 201, 177, 0.3);
  transform: translateY(-3px);
}
.support-card i {
  font-size: 1.9rem;
  color: var(--teal);
  margin-bottom: 0.9rem;
  display: block;
}
.support-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}
.support-card p {
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.support-card a {
  color: var(--gold);
  text-decoration: none;
}
.support-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 1.5rem;
  color: var(--cream-dim);
  font-size: 0.87rem;
}
.support-hours i {
  color: var(--gold);
}
.fair-play {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 30px;
  margin: 2rem 0;
}
.fair-play-content {
  color: var(--cream-dim);
  font-size: 0.87rem;
}
.commitment-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px;
  color: var(--cream-dim);
}
.commitment-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.impact-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}
.impact-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.impact-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.impact-card p {
  color: var(--cream-dim);
  font-size: 0.82rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.community-impact {
  padding: 70px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--bd);
}
.press-mentions {
  padding: 70px 0;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 0.5rem;
}
.press-item {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px 22px;
  min-width: 200px;
  text-align: center;
}
.press-item i {
  color: var(--gold);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.press-item p {
  color: var(--cream);
  font-size: 0.87rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.press-item span {
  color: var(--cream-dim);
  font-size: 0.78rem;
}
.cta-section {
  padding: 70px 0;
  background: linear-gradient(
    135deg,
    var(--navy-mid),
    rgba(212, 168, 67, 0.04)
  );
  border-top: 1px solid var(--bd);
  text-align: center;
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-section p {
  color: var(--cream-dim);
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.compliance-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  border: 1px solid var(--bd);
}
.age-requirement {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid rgba(224, 85, 85, 0.25);
  color: #e05555;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 1rem 0;
}
.security-section {
  padding: 70px 0;
}
.security-badge-large {
  background: rgba(46, 184, 126, 0.07);
  border: 1px solid rgba(46, 184, 126, 0.2);
  border-radius: 12px;
  padding: 20px;
}
.security-note {
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.5rem;
}
.security-measures {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── CONTACT PAGE ── */
.contact-section {
  padding: 68px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.contact-form-section {
  padding: 60px 0;
}
.contact-form-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 30px;
}
.contact-form-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 24px;
}
.contact-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.info-item {
  display: flex;
  gap: 13px;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-item i {
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.info-label {
  color: var(--cream-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.info-detail {
  color: var(--cream);
  font-size: 0.85rem;
}
.info-detail a {
  color: var(--gold);
  text-decoration: none;
}
.contact-method {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd);
}
.contact-method:last-child {
  border-bottom: none;
}
.contact-method i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.map-section {
  padding: 60px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--bd);
}
.map-container {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  overflow: hidden;
}
.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  color: var(--cream-dim);
  font-size: 0.83rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hours-list li:last-child {
  border: none;
}
.feedback-widget {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 22px;
}
.feedback-widget h4 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.rating-stars {
  display: flex;
  gap: 4px;
  font-size: 1.3rem;
  color: var(--bd);
  cursor: pointer;
  margin-bottom: 0.9rem;
}
.rating-stars i.active,
.rating-stars i:hover {
  color: var(--gold);
}

/* ── POLICY PAGES ── */
.policy-content {
  padding: 60px 0;
}
.policy-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: start;
}
.policy-main {
  min-width: 0;
}
.policy-section {
  margin-bottom: 2.5rem;
}
.policy-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 1.8rem 0 0.7rem;
}
.policy-section h2:first-child {
  margin-top: 0;
}
.policy-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--cream);
  margin: 1.2rem 0 0.45rem;
}
.policy-section p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  line-height: 1.7;
}
.policy-section a {
  color: var(--gold);
  text-decoration: none;
}
.policy-section a:hover {
  text-decoration: underline;
}
.policy-section strong {
  color: var(--cream);
}
.policy-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.83rem;
}
.policy-section th {
  background: var(--navy-mid);
  color: var(--gold);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
}
.policy-section td {
  padding: 9px 12px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--bd);
}
.policy-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 18px;
}
.sidebar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.sidebar-card h4 {
  color: var(--gold);
  font-size: 0.87rem;
  margin-bottom: 0.7rem;
}
.sidebar-content {
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.sticky-sidebar {
  position: sticky;
  top: 90px;
}
.policy-nav {
  list-style: none;
}
.policy-nav a {
  display: block;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.83rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}
.policy-nav a:hover {
  color: var(--gold);
}
.last-updated {
  color: var(--cream-dim);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 6px;
  align-items: center;
}
.last-updated i {
  color: var(--gold);
}
.compliance-list,
.legal-basis-list,
.policy-list {
  list-style: none;
  margin-bottom: 0.9rem;
}
.compliance-list li,
.legal-basis-list li,
.policy-list li {
  color: var(--cream-dim);
  font-size: 0.86rem;
  padding: 5px 0 5px 18px;
  position: relative;
}
.compliance-list li::before,
.legal-basis-list li::before,
.policy-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 8px;
}
.info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(0, 201, 177, 0.05);
  border: 1px solid rgba(0, 201, 177, 0.18);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0;
}
.info-box i {
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-box p {
  color: var(--cream-dim);
  font-size: 0.86rem;
  margin: 0;
}
.warning-box {
  background: rgba(224, 85, 85, 0.07);
  border: 1px solid rgba(224, 85, 85, 0.22);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0;
  color: var(--cream-dim);
  font-size: 0.86rem;
}
.warning-box strong {
  color: #ff6b7a;
}
.why-box {
  background: rgba(212, 168, 67, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--cream-dim);
}
.why-box strong {
  color: var(--gold);
}
.info-card {
  background: rgba(0, 201, 177, 0.05);
  border: 1px solid rgba(0, 201, 177, 0.15);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--cream-dim);
  font-size: 0.86rem;
  margin: 14px 0;
}
.company-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 20px;
  margin: 16px 0;
}
.company-info p {
  color: var(--cream-dim);
  font-size: 0.86rem;
  margin: 0;
}
.company-info strong {
  color: var(--white);
}
.info-category {
  margin-bottom: 20px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px;
  background: var(--navy-mid);
}
.info-category h3 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.warning-category h3,
.sharing-category h3,
.info-category h3 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.info-description {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.use-case-card {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px;
}
.use-case-card > i {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.use-case-card h4 {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.use-case-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.use-case-card ul li {
  color: var(--cream-dim);
  font-size: 0.82rem;
  padding: 3px 0 3px 14px;
  position: relative;
}
.use-case-card ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 7px;
}
.legal-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--bd);
}
.legal-item:last-child {
  border-bottom: none;
}
.legal-item > i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-item strong {
  color: var(--cream);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}
.legal-item p {
  color: var(--cream-dim);
  font-size: 0.84rem;
  margin: 0;
}
.sharing-category {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 14px;
}
.sharing-category p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0;
}
.right-card {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.right-card > i {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.right-card h4 {
  color: var(--cream);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.right-card p {
  color: var(--cream-dim);
  font-size: 0.82rem;
  margin: 0;
}
.download-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.download-card i {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.download-card p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin: 0;
}
.exercise-rights {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px;
  margin: 1.5rem 0;
}
.related-links {
  list-style: none;
}
.related-links li {
  padding: 5px 0;
}
.related-links li a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
}

/* ── COOKIES PAGE ── */
.cookie-type-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
}
.cookie-type-card h3 {
  color: var(--white);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.cookie-type-card p {
  color: var(--cream-dim);
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
}
.cookie-icon {
  color: var(--gold);
}
.cookie-info {
  background: rgba(212, 168, 67, 0.06);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.83rem;
  color: var(--cream-dim);
  margin: 10px 0;
}
.cookie-examples {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 8px 0;
  font-size: 0.83rem;
  color: var(--cream-dim);
}
.essential {
  border-left: 3px solid var(--teal);
}
.functional {
  border-left: 3px solid var(--gold);
}
.analytics {
  border-left: 3px solid #7b61ff;
}
.marketing {
  border-left: 3px solid var(--danger);
}
.third-party-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0;
}
.third-party-card {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 16px;
}
.third-party-card h4 {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.third-party-card p {
  color: var(--cream-dim);
  font-size: 0.82rem;
  margin: 0;
}
.manage-cookies-section,
.browser-settings-section {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
}
.manage-cookies-section h3,
.browser-settings-section h3 {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  font-size: 1rem;
}
.mobile-instructions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
.mobile-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px;
}
.mobile-card h4 {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.mobile-card p,
.mobile-card li {
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.browser-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}
.browser-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 12px;
  border: 1px solid var(--bd);
  border-radius: 6px;
}
.browser-links a:hover {
  border-color: var(--gold);
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 18px 22px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.cookie-banner-text {
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.cookie-banner-text strong {
  color: var(--white);
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-settings-btn {
  background: none;
  border: 1px solid var(--bd);
  color: var(--cream-dim);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.cookie-settings-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── RESPONSIBLE GAMING PAGE ── */
.emergency-help-banner {
  background: rgba(224, 85, 85, 0.07);
  border: 1px solid rgba(224, 85, 85, 0.22);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 2rem;
}
.emergency-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.emergency-content > i {
  color: var(--danger);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.emergency-card {
  background: rgba(224, 85, 85, 0.07) !important;
  border-color: rgba(224, 85, 85, 0.22) !important;
}
.emergency-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 20px 0;
}
.tool-card {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  transition: all 0.3s;
}
.tool-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-3px);
}
.tool-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 auto 12px;
}
.tool-card h3 {
  color: var(--cream);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.tool-card p {
  color: var(--cream-dim);
  font-size: 0.82rem;
}
.tools-info {
  color: var(--cream-dim);
  font-size: 0.86rem;
  margin-bottom: 16px;
}
.warning-signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 16px 0;
}
.warning-category {
  margin-bottom: 18px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px 20px;
}
.faq-item h4 {
  color: var(--gold);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin: 0;
}
.guide-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--bd);
}
.guide-step:last-child {
  border-bottom: none;
}
.guide-step > i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}
.state-item {
  background: var(--navy-mid);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.tips-card {
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
}
.tips-card h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.84rem;
}
.odds-table th {
  background: var(--navy-mid);
  color: var(--gold);
  padding: 10px 12px;
  text-align: left;
}
.odds-table td {
  padding: 9px 12px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--bd);
}
.odds-facts {
  list-style: none;
}
.odds-facts li {
  color: var(--cream-dim);
  font-size: 0.85rem;
  padding: 4px 0 4px 18px;
  position: relative;
}
.odds-facts li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 7px;
}
.help-resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.resource-card {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 22px;
}
.resource-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.resource-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0.8rem;
}
.resource-phone {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
}
.resource-website a {
  color: var(--teal);
  font-size: 0.82rem;
  text-decoration: none;
}
.resource-website h4 {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.resource-website p {
  color: var(--cream-dim);
  font-size: 0.82rem;
  margin: 0 0 6px;
}
.resource-content {
  color: var(--cream-dim);
  font-size: 0.83rem;
}
.provincial-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 1.5rem 0;
}
.regulatory-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 1.2rem 0;
}
.self-assessment {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 28px;
  margin: 2rem 0;
}
.self-assessment h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
  margin-bottom: 1rem;
}
.quiz-questions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-question {
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.quiz-question strong {
  color: var(--white);
}
.quiz-result {
  background: rgba(0, 201, 177, 0.06);
  border: 1px solid rgba(0, 201, 177, 0.18);
  border-radius: 10px;
  padding: 16px;
  margin-top: 1rem;
  color: var(--cream-dim);
  display: none;
}
.priority {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}
.minor-protection {
  background: rgba(224, 85, 85, 0.06);
  border: 1px solid rgba(224, 85, 85, 0.2);
  border-radius: 12px;
  padding: 22px;
  margin: 1.5rem 0;
}
.minor-protection h3 {
  color: var(--danger);
  font-family: "Playfair Display", serif;
  margin-bottom: 0.6rem;
}
.minor-protection p {
  color: var(--cream-dim);
  font-size: 0.87rem;
}
.escalation-steps {
  list-style: none;
}
.escalation-steps li {
  color: var(--cream-dim);
  font-size: 0.87rem;
  padding: 5px 0 5px 18px;
  position: relative;
}
.escalation-steps li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 8px;
}
.help-others-guide {
  margin: 1.5rem 0;
}

/* ── MISC ── */
.legal-section {
  padding: 68px 0;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 46px;
}
.legal-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 1.8rem 0 0.7rem;
}
.legal-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--cream);
  margin: 1.2rem 0 0.45rem;
}
.legal-content p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}
.legal-content ul {
  list-style: none;
  margin-bottom: 0.9rem;
}
.legal-content ul li {
  color: var(--cream-dim);
  font-size: 0.86rem;
  padding: 3px 0 3px 18px;
  position: relative;
}
.legal-content ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 7px;
}
.legal-content a {
  color: var(--gold);
  text-decoration: none;
}
.legal-content strong {
  color: var(--cream);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.83rem;
}
.legal-content th {
  background: var(--navy-mid);
  color: var(--gold);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
}
.legal-content td {
  padding: 9px 12px;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--bd);
}
.retention-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin: 1rem 0;
}
.retention-table th {
  background: var(--navy-mid);
  color: var(--gold);
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--bd);
}
.retention-table td {
  padding: 9px 12px;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.note {
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-style: italic;
}
.quick-links {
  list-style: none;
}
.quick-links li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.quick-links li a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.83rem;
}
.file-upload-area {
  border: 2px dashed var(--bd);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  color: var(--cream-dim);
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload-area:hover {
  border-color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lottery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .builder-layout {
    grid-template-columns: 1fr;
  }
  .summary-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .sticky-sidebar {
    position: static;
  }
  .auth-container,
  .registration-container {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .intro-content {
    grid-template-columns: 1fr;
  }
  .certification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-info {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--bd);
    flex-direction: column;
    padding: 10px;
    gap: 3px;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu a {
    justify-content: flex-start;
    padding: 10px 13px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-content {
    padding: 60px 0;
  }
  .lottery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .form-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .summary-sidebar {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .date-options {
    flex-direction: column;
  }
  .game-tabs {
    flex-direction: column;
  }
  .action-buttons {
    flex-direction: column;
  }
  .legal-content {
    padding: 26px 18px;
  }
  .responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cookie-banner {
    flex-direction: column;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  .registration-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .help-resources,
  .provincial-resources {
    grid-template-columns: 1fr;
  }
  .regulatory-contacts {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .press-logos {
    flex-direction: column;
    align-items: center;
  }
  .use-case-grid {
    grid-template-columns: 1fr;
  }
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .certification-grid {
    grid-template-columns: 1fr;
  }
  .third-party-grid {
    grid-template-columns: 1fr;
  }
  .mobile-instructions {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .warning-signs-grid {
    grid-template-columns: 1fr;
  }
  .company-info {
    grid-template-columns: 1fr;
  }
  .sidebar-stats {
    flex-direction: row;
  }
}

/* ── MISSING CLASSES — added in fix pass ── */

/* policy-hero: terms.html page header block */
.policy-hero {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.policy-hero-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--navy);
}
.policy-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.policy-meta {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}
.policy-meta i {
  color: var(--gold);
  margin-right: 0.2rem;
}

/* policy-notice: important notice block in terms.html */
.policy-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--bd);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  text-align: left;
  margin-top: 1rem;
}
.policy-notice i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.policy-notice p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.6;
}

/* policy-highlight: callout box (e.g. gambling help line) */
.policy-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0, 201, 177, 0.07);
  border: 1px solid rgba(0, 201, 177, 0.25);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}
.policy-highlight i {
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.policy-highlight p {
  font-size: 0.88rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.6;
}
.policy-highlight a {
  color: var(--teal);
}

/* contact-block + contact-item: contact detail grid in terms.html */
.contact-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-item a {
  color: var(--teal);
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--gold);
}

/* contact-methods: contact list in privacy / cookies / responsiblegame */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

/* cookie-details: sub-section inside cookie-type-card */
.cookie-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bd);
}
.cookie-details h4 {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.cookie-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.8rem;
}
.cookie-details ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--cream-dim);
  padding: 0.25rem 0;
}
.cookie-details ul li i {
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* contact-info-section: contact.html top contact cards section */
.contact-info-section {
  padding: 3rem 0;
  background: var(--navy-mid);
}

/* contact-form: the <form> element in contact.html */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* map-placeholder: fake map block in contact.html */
.map-placeholder {
  background: var(--navy-light);
  border: 1px solid var(--bd);
  border-radius: 12px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding: 2rem;
}
.map-placeholder i {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
}

/* impact-stats: stat callout inside about.html impact section */
.impact-stats {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  margin-top: 0.75rem;
}

/* customer-support: about.html customer support section */
.customer-support {
  background: var(--navy-mid);
  padding: 4rem 0;
  border-top: 1px solid var(--bd);
}
.customer-support .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ── RESPONSIVE for new classes ── */
@media (max-width: 768px) {
  .policy-hero {
    padding: 1.8rem 1.2rem;
  }
  .policy-hero h1 {
    font-size: 1.5rem;
  }
  .contact-block {
    grid-template-columns: 1fr;
  }
  .policy-notice,
  .policy-highlight {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* checkbox-label size modifier */
.checkbox-label.large {
  font-size: 0.95rem;
  gap: 0.6rem;
}
