/* ============================================================
   DOMENPLAY — Base Stylesheet
   ------------------------------------------------------------
   This file contains the structural CSS for all pages.
   All colours are driven by CSS custom properties (--t-*).
   To change the colour scheme, use one of the theme files
   in /themes/ — each defines its own --t-* values and may
   also override structural rules for a distinct look.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');

/* ============================================================
   COLOR VARIABLES  —  EDIT THESE TO CHANGE THE PALETTE
   ============================================================
   Every colour on the site reads from the variables below.
   Change a value here and it updates everywhere.
   ============================================================ */

:root {
  /* ── Primary accent ── */
  --t-primary:       hsl(21, 56%, 58%);
  --t-primary-dark:  hsl(21, 56%, 58%);
  --t-primary-deep:  hsl(21, 56%, 58%);
  --t-primary-faint: hsl(21, 51%, 61%);
  --t-primary-rgb:   hsl(21, 56%, 58%);

  /* ── Navigation / dark surfaces ── */
  --t-nav:           #0a0a0a;
  --t-nav-alt:       #111111;
  --t-dark-surface:  #0f0f0f;

  /* ── Hero gradient stops ── */
  --t-hero-from:     hsl(21, 56%, 58%);
  --t-hero-mid:      hsl(21, 56%, 58%);
  --t-hero-glow:     hsl(21, 56%, 58%);

  /* ── Dark CTA gradient ── */
  --t-cta-from:      hsl(21, 56%, 58%);
  --t-cta-mid:       hsl(21, 56%, 58%);

  /* ── Logo accent ── */
  --t-gold:          hsl(21, 56%, 58%);
  --t-gold-light:    hsl(21, 51%, 61%);

  /* ── Policy hero ── */
  --t-policy-hero-from: hsl(21, 56%, 58%);

  /* ── Auth page ── */
  --t-auth-from:     hsl(21, 56%, 58%);
  --t-auth-mid:      hsl(21, 56%, 58%);
  --t-floating-ball: hsl(21, 56%, 58%);

  /* ── Section backgrounds ── */
  --t-section-alt:   #f5f5f5;

  /* ── Typography ── */
  --font-body:       'Inter', system-ui, sans-serif;
  --font-display:    "Urbanist", sans-serif;

  /* ── Layout ── */
  --container-width: 1160px;
  --radius-sm:       4px;
  --radius-md:       8px;
  --radius-lg:       16px;
  --radius-pill:     999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.45);

  --transition: 0.22s ease;
}

/* ── Static palette (not themed) ── */
:root {
  --dark-950: #0a0a0a;
  --dark-900: #111111;
  --dark-800: #1a1a1a;
  --dark-700: #222222;
  --dark-600: #2d2d2d;

  --neutral-100: #f5f5f5;
  --neutral-200: #e8e8e8;
  --neutral-300: #d0d0d0;
  --neutral-500: #888888;
  --neutral-700: #444444;

  --white: #ffffff;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-900);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--neutral-500);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--t-primary);
  margin: 12px auto 32px;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--t-primary);
  color: var(--white);
  border-color: var(--t-primary);
}
.btn-primary:hover {
  background: var(--t-primary-dark);
  border-color: var(--t-primary-dark);
  box-shadow: 0 4px 16px rgba(var(--t-primary-rgb), .45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--t-primary-dark); }

.btn-outline-red {
  background: transparent;
  color: var(--t-primary);
  border-color: var(--t-primary);
}
.btn-outline-red:hover { background: var(--t-primary); color: var(--white); }

.btn-dark {
  background: var(--dark-800);
  color: var(--white);
  border-color: var(--dark-800);
}
.btn-dark:hover { background: var(--dark-700); }

.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-sm { padding: 7px 18px; font-size: 13px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--t-nav);
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 64px;
  position: relative;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
}
.navbar-logo-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t-gold), var(--t-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-nav a {
  color: rgba(255,255,255,.75);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
}

/* ── Warning bar ── */
.warning-bar {
  background: #1c1c1c;
  color: rgba(255,255,255,.6);
  font-size: 12.5px;
  text-align: center;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.warning-bar strong { color: rgba(255,255,255,.85); }

/* ── Top action bar ── */
.action-bar {
  background: var(--t-nav-alt);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--t-hero-from) 0%, var(--t-hero-mid) 40%, var(--t-hero-from) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--t-hero-glow) 0%, transparent 70%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg32.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-title { text-align: left; }
.about-text .divider { margin-left: 0; }
.about-text p { color: var(--neutral-700); line-height: 1.8; margin-bottom: 16px; }

.balls-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 340px;
}

/* ============================================================
   DARK CTA
   ============================================================ */
.dark-cta {
  position: relative;
  text-align: center;
  padding: 100px 24px;
  overflow: hidden;
}
.dark-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg32.webp');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.2;
}
.dark-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    var(--t-cta-from) 0%,
    var(--t-cta-mid)  50%,
    var(--t-cta-from) 100%
  );
}
.dark-cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.dark-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.dark-cta p { color: rgba(255,255,255,.65); margin-bottom: 32px; line-height: 1.75; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--t-section-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--t-primary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--dark-900); margin-bottom: 12px; }
.why-card ul { padding-left: 0; }
.why-card ul li {
  font-size: 13px;
  color: var(--neutral-700);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}
.why-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--t-primary);
}
.why-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   VERIFY TICKET
   ============================================================ */
.verify-section { background: var(--white); }
.verify-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}
.verify-box {
  background: var(--t-section-alt);
  border-radius: var(--radius-md);
  padding: 32px;
}
.verify-box h2 { font-size: 20px; font-weight: 700; color: var(--dark-900); margin-bottom: 6px; }
.verify-box p  { font-size: 13px; color: var(--neutral-500); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-700);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--t-primary); }
.form-group input::placeholder { color: var(--neutral-300); }

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--neutral-700);
  margin-bottom: 20px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--t-primary); }

.btn-verify {
  width: 100%;
  justify-content: center;
  background: var(--neutral-300);
  color: var(--neutral-500);
  border-color: var(--neutral-300);
  border-radius: var(--radius-sm);
}
.btn-verify.active {
  background: var(--t-primary);
  color: var(--white);
  border-color: var(--t-primary);
}

/* ── Recent Winning Draws ── */
.draws-panel {
  background: var(--t-section-alt);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  border-left: 4px solid var(--t-primary);
}
.draws-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.draws-title::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--t-primary);
  flex-shrink: 0;
}
.draws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.draw-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.draw-card:hover { box-shadow: var(--shadow-md); }
.draw-card-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--neutral-500);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.balls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Lottery balls ── */
.ball {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: inset -2px -2px 4px rgba(0,0,0,.25), inset 2px 2px 4px rgba(255,255,255,.15);
}
.ball-red    { background: radial-gradient(circle at 35% 30%, #e74c3c 0%, #922b21 100%); }
.ball-blue   { background: radial-gradient(circle at 35% 30%, #3498db 0%, #1a5f8c 100%); }
.ball-green  { background: radial-gradient(circle at 35% 30%, #27ae60 0%, #1a7a44 100%); }
.ball-orange { background: radial-gradient(circle at 35% 30%, #e67e22 0%, #9e5a10 100%); }
.ball-yellow { background: radial-gradient(circle at 35% 30%, #f1c40f 0%, #b8930b 100%); color: #333; }
.ball-teal   { background: radial-gradient(circle at 35% 30%, #1abc9c 0%, #0d7a65 100%); }
.ball-bonus  { background: radial-gradient(circle at 35% 30%, var(--t-primary) 0%, var(--t-primary-deep) 100%); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--t-section-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--t-primary-faint);
  position: absolute;
  top: 12px; left: 18px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 13.5px;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: 16px;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--dark-900); }
.testimonials-cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--t-primary); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark-900);
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--t-section-alt); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--neutral-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--dark-700);
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon { background: var(--t-primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--neutral-700);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   RESPONSIBLE GAMBLING
   ============================================================ */
.responsible {
  background: var(--t-nav);
  padding: 60px 0 48px;
}
.responsible-top { margin-bottom: 32px; }
.responsible h2 {
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  font-size: 13px; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.responsible p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 10px; }
.resp-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.resp-logo {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}
.resp-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--t-nav-alt);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.footer-write-btn:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   SIGN IN PAGE
   ============================================================ */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--t-auth-from) 0%, var(--t-auth-mid) 50%, var(--t-auth-from) 100%);
  display: flex;
  flex-direction: column;
}
.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  position: relative;
}
.auth-card-top { text-align: center; margin-bottom: 32px; }
.auth-card-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--t-gold), var(--t-gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.auth-card h1 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--dark-900); margin-bottom: 6px; }
.auth-card-sub { font-size: 14px; color: var(--neutral-500); }

.auth-form .form-group { margin-bottom: 18px; }
.auth-form .form-group label { font-size: 13px; font-weight: 600; color: var(--dark-700); margin-bottom: 7px; display: block; }
.auth-form .form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  color: var(--dark-800);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.auth-form .form-group input:focus {
  border-color: var(--t-primary);
  box-shadow: 0 0 0 3px rgba(var(--t-primary-rgb), .12);
}
.auth-forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--t-primary);
  margin-top: -10px;
  margin-bottom: 22px;
  font-weight: 500;
  transition: color var(--transition);
}
.auth-forgot:hover { color: var(--t-primary-dark); }

.btn-auth {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--neutral-300);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--neutral-200);
}
.auth-switch { text-align: center; font-size: 14px; color: var(--neutral-500); margin-top: 24px; }
.auth-switch a { color: var(--t-primary); font-weight: 600; }
.auth-switch a:hover { color: var(--t-primary-dark); }
.auth-bottom-note {
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-200);
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ============================================================
   POLICY PAGE
   ============================================================ */
.policy-hero {
  background: linear-gradient(135deg, var(--t-policy-hero-from) 0%, var(--t-nav) 100%);
  padding: 72px 24px 60px;
  text-align: center;
}
.policy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.policy-hero p { color: rgba(255,255,255,.6); font-size: 15px; }

.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.policy-sidebar { position: sticky; top: 80px; }
.policy-sidebar h3 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--neutral-500); margin-bottom: 12px;
}
.policy-sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--neutral-700);
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.policy-sidebar a:hover,
.policy-sidebar a.active {
  background: var(--t-primary-faint);
  color: var(--t-primary-dark);
  border-left-color: var(--t-primary);
}
.policy-sidebar a::before { content: '#'; color: var(--neutral-300); font-weight: 600; }

.policy-content section { margin-bottom: 56px; }
.policy-content section:last-child { margin-bottom: 0; }
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; color: var(--dark-900);
  margin-bottom: 6px; padding-bottom: 12px;
  border-bottom: 2px solid var(--neutral-200);
}
.policy-content .section-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--t-primary);
  background: var(--t-primary-faint);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.policy-content p { font-size: 14.5px; color: var(--neutral-700); line-height: 1.8; margin-bottom: 14px; }
.policy-content h3 { font-size: 16px; font-weight: 700; color: var(--dark-800); margin: 24px 0 10px; }
.policy-content ul { padding-left: 0; margin-bottom: 16px; }
.policy-content ul li {
  font-size: 14.5px; color: var(--neutral-700); line-height: 1.75;
  padding: 4px 0 4px 22px; position: relative;
}
.policy-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--t-primary); font-size: 13px; }

.policy-highlight {
  background: var(--t-section-alt);
  border-left: 4px solid var(--t-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 20px;
  margin: 20px 0;
}
.policy-highlight p { margin: 0; font-size: 14px; color: var(--neutral-700); }
.policy-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--neutral-500);
  background: var(--t-section-alt);
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 32px;
}
.policy-tabs {
  display: flex; gap: 4px;
  background: var(--t-section-alt); padding: 5px;
  border-radius: var(--radius-md); margin-bottom: 40px; flex-wrap: wrap;
}
.policy-tab {
  flex: 1; min-width: 120px; padding: 9px 16px;
  border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 600;
  color: var(--neutral-700); background: transparent; border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.policy-tab.active {
  background: var(--white);
  color: var(--t-primary-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.policy-tab-panel { display: none; }
.policy-tab-panel.active { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { position: static; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-actions { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--t-nav);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    z-index: 999;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,.75);
    font-size: 15px; font-weight: 500;
    transition: background var(--transition);
  }
  .mobile-menu a:hover { background: rgba(255,255,255,.06); color: var(--white); }
  .mobile-menu-actions {
    display: flex; flex-direction: column; gap: 8px;
    padding: 12px 24px 8px;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 8px;
  }
  .mobile-menu-actions .btn { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-text .section-title { text-align: center; }
  .about-text .divider { margin: 12px auto 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .verify-grid { grid-template-columns: 1fr; }
  .draws-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resp-buttons { flex-direction: column; }
  .auth-card { padding: 36px 24px; }
  .policy-tabs { flex-direction: column; }
  .policy-tab { min-width: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .draws-grid { grid-template-columns: 1fr; }
  .action-bar { flex-wrap: wrap; }
}
