/* ============================================================
   GOLDEN STRIKE — Bold Editorial Light Theme
   Fonts : Syne (headings, bold geometric) + IBM Plex Sans (body)
   Palette: chalk #f5f2ec · ink #0f0f0f · flame #e8410a · gold #f5b800 · slate #2b2d42
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap");

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

:root {
  --chalk:    #f5f2ec;
  --chalk2:   #ebe7df;
  --chalk3:   #ddd8ce;
  --ink:      #0f0f0f;
  --ink2:     #1e1e1e;
  --ink3:     #2b2d42;
  --slate:    #2b2d42;
  --muted:    #6b6f7e;
  --flame:    #e8410a;
  --flame-lt: #ff6535;
  --gold:     #f5b800;
  --gold-dk:  #c99500;
  --gold-lt:  #ffe066;
  --white:    #ffffff;
  --danger:   #d63031;
  --success:  #00b894;

  --border:   #d8d3c8;
  --border2:  #c5bfb3;

  --grad-flame: linear-gradient(135deg, var(--flame), var(--flame-lt));
  --grad-gold:  linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
}

html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--chalk2); }
::-webkit-scrollbar-thumb { background: var(--flame); border-radius: 0; }

/* ── GRID TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
}
body > * { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ── NAVBAR ── */
.main-header {
  background: var(--ink);
  border-bottom: 3px solid var(--flame);
  position: sticky; top: 0; z-index: 1000;
}
.navbar .container {
  display: flex; justify-content: space-between; align-items: center; height: 68px;
}
.nav-brand { display: flex; flex-direction: column; gap: 0; }
.logo-mark { display: flex; align-items: center; gap: 10px; }
.strike-logo {
  width: 34px; height: 34px;
  background: var(--grad-flame);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; font-weight: 800;
  font-family: "Syne", sans-serif; flex-shrink: 0;
  animation: hexPulse 3s ease-in-out infinite;
}
@keyframes hexPulse {
  0%,100% { filter: drop-shadow(0 0 6px rgba(232,65,10,0.4)); }
  50%      { filter: drop-shadow(0 0 16px rgba(232,65,10,0.7)); }
}
.brand-name {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
}
.brand-name span { color: var(--gold); }
.domain-url {
  font-size: 0.62rem; color: rgba(245,184,0,0.6);
  letter-spacing: 0.12em; text-transform: uppercase; margin-left: 44px;
}
.mobile-toggle {
  display: none; background: transparent;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-size: 1rem; cursor: pointer; padding: 8px 12px;
}
.mobile-toggle:hover { border-color: var(--flame); color: var(--gold); }
.nav-menu { display: flex; list-style: none; gap: 0; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  padding: 0.45rem 1rem;
  font-size: 0.82rem; font-weight: 500;
  font-family: "IBM Plex Sans", sans-serif;
  display: flex; align-items: center; gap: 0.4rem;
  transition: all 0.18s; letter-spacing: 0.01em;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.nav-menu li:first-child a { border-left: 1px solid rgba(255,255,255,0.07); }
.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold); background: rgba(245,184,0,0.07);
}
.btn-login {
  border-right: none !important; border-left: none !important;
  margin-left: 8px;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: var(--white) !important;
}
.btn-login:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.btn-register {
  background: var(--flame) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border: none !important; margin-left: 6px;
}
.btn-register:hover { background: var(--flame-lt) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border: 2px solid var(--ink); border-radius: 0;
  font-family: "Syne", sans-serif; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.18s;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-primary {
  background: var(--flame); color: var(--white); border-color: var(--flame);
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--flame); }
.btn-secondary {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--chalk); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold-dk); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--ink); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--gold-dk); }
.btn-outline { background: transparent; color: var(--flame); border-color: var(--flame); }
.btn-outline:hover { background: var(--flame); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #b52828; border-color: #b52828; }
.btn-large { padding: 1rem 2.2rem; font-size: 0.92rem; }
.btn-small { padding: 0.4rem 0.9rem; font-size: 0.74rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero-section {
  background: var(--ink2);
  overflow: hidden; position: relative;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-bg-text {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg-text span {
  font-family: "Syne", sans-serif; font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800; color: rgba(255,255,255,0.03);
  white-space: nowrap; user-select: none; letter-spacing: -0.05em;
}
.hero-stripe {
  position: absolute; top: 0; right: 0; width: 42%; height: 100%;
  background: var(--flame); clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-stripe-inner {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 10px,
    transparent 10px, transparent 20px
  );
}
.hero-jackpot-tag {
  position: absolute; top: 48px; right: 48px;
  background: var(--gold); color: var(--ink);
  font-family: "Syne", sans-serif; font-weight: 800;
  padding: 10px 20px; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(2deg);
}
.hero-content {
  position: relative; z-index: 2; padding: 80px 0;
  max-width: 640px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--flame);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--flame); }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title em {
  font-style: normal; color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  margin-bottom: 40px; max-width: 480px; line-height: 1.65;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  font-weight: 500; letter-spacing: 0.03em;
}
.trust-item i { color: var(--gold); }

/* ── TICKER ── */
.results-ticker {
  background: var(--gold); border-top: 2px solid var(--gold-dk);
  border-bottom: 2px solid var(--gold-dk); padding: 10px 0; overflow: hidden;
}
.results-ticker .container { display: flex; align-items: center; gap: 20px; }
.ticker-label {
  flex-shrink: 0; background: var(--ink); color: var(--gold);
  padding: 4px 14px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; font-family: "Syne", sans-serif;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-content {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-content span { font-size: 0.8rem; color: var(--ink); font-weight: 600; font-family: "Syne", sans-serif; }
.ticker-content span strong { color: var(--flame); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 88px 0; }
.section-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--flame); margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--flame); flex-shrink:0; }
.section-title { color: var(--ink); margin-bottom: 10px; }
.section-sub { color: var(--muted); max-width: 500px; margin-bottom: 56px; font-size: 0.95rem; }

/* ── GAME CARDS ── */
.games-section { background: var(--chalk2); }
.lottery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.lottery-card {
  background: var(--white);
  border: 2px solid var(--ink);
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.lottery-card:hover { transform: translate(-4px,-4px); box-shadow: 6px 6px 0 var(--ink); }
.lottery-card.featured { background: var(--ink); color: var(--white); }
.featured-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--ink);
  padding: 3px 10px; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; font-family: "Syne",sans-serif;
}
.card-img {
  height: 170px; overflow: hidden; border-bottom: 2px solid var(--ink);
  background: #0a1628;
  display: flex; align-items: center; justify-content: center;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
}
/* Weekday Windfall logo is white — needs dark background */
.card-img.weekday-bg { background: #1a3a5c; }
/* TattsLoto & Powerball look better with their own bg */
.card-img.tatts-bg   { background: #0a1628; }
.card-img.powerball-bg { background: #0d0d0d; }
.card-body { padding: 26px 24px; }
.lottery-title {
  font-family: "Syne", sans-serif; font-weight: 800;
  font-size: 1.5rem; margin-bottom: 6px; letter-spacing: -0.03em;
}
.lottery-card.featured .lottery-title { color: var(--white); }
.lottery-jackpot {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--ink);
  padding: 3px 10px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
  font-family: "Syne", sans-serif;
}
.lottery-card.featured .lottery-jackpot { background: var(--flame); color: var(--white); }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--muted);
}
.lottery-card.featured .feature-list li { color: rgba(255,255,255,0.6); }
.feature-list li i { color: var(--flame); flex-shrink: 0; margin-top: 3px; }
.lottery-card.featured .feature-list li i { color: var(--gold); }
.lottery-price {
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 18px; font-style: italic;
}
.lottery-card.featured .lottery-price { color: rgba(255,255,255,0.5); }
.lottery-price strong { color: var(--flame); font-style: normal; }
.lottery-card.featured .lottery-price strong { color: var(--gold); }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--chalk); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.step-card {
  background: var(--white); border: 2px solid var(--ink);
  padding: 32px 24px; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translate(-3px,-3px); box-shadow: 5px 5px 0 var(--ink); }
.step-number {
  font-family: "Syne", sans-serif; font-size: 4.5rem;
  font-weight: 800; color: rgba(15,15,15,0.05);
  position: absolute; top: 8px; right: 12px;
  line-height: 1; pointer-events: none;
}
.step-icon {
  width: 52px; height: 52px; background: var(--flame);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); margin-bottom: 18px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.step-card h3 { color: var(--ink); margin-bottom: 10px; font-size: 1rem; }
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--ink); }
.testimonials .section-eyebrow { color: var(--gold); }
.testimonials .section-eyebrow::before { background: var(--gold); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.4); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.testimonial-card {
  background: var(--ink2); border: 1px solid rgba(255,255,255,0.07);
  padding: 32px; transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--gold); font-size: 0.8rem; }
.testimonial-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  line-height: 1.75; margin-bottom: 22px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  background: var(--flame); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; flex-shrink: 0;
  font-family: "Syne", sans-serif;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.t-info strong { display: block; font-size: 0.88rem; color: var(--white); }
.t-info span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── RESPONSIBLE BANNER ── */
.responsible-banner {
  border: 2px solid var(--ink); background: var(--white);
  padding: 44px 52px; display: flex; align-items: center; gap: 28px;
  margin: 0; transition: transform 0.2s, box-shadow 0.2s;
}
.responsible-banner:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.rg-icon {
  width: 64px; height: 64px; background: var(--flame);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white); flex-shrink: 0;
}
.rg-content { flex: 1; }
.rg-content h2 { color: var(--ink); font-size: 1.4rem; margin-bottom: 8px; }
.rg-content p { font-size: 0.88rem; color: var(--muted); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--ink); border-bottom: 3px solid var(--flame);
  padding: 52px 0 40px;
}
.page-header h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 8px; }
.page-header h1 i { color: var(--gold); }
.page-header p { color: rgba(255,255,255,0.45); font-size: 0.9rem; }

/* ── BUY PAGE ── */
.ticket-builder-section { background: var(--chalk); }
.builder-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.builder-container {
  background: var(--white); border: 2px solid var(--ink);
  padding: 36px; display: flex; flex-direction: column; gap: 28px;
}
.builder-container h2 {
  color: var(--ink); font-size: 1rem; font-weight: 700;
  font-family: "Syne", sans-serif; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 2px solid var(--ink); padding-bottom: 10px;
}
.builder-container h2 i { color: var(--flame); }
.builder-container h3 {
  color: var(--ink); font-size: 0.82rem; font-weight: 700;
  font-family: "Syne", sans-serif; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.builder-container h3 i { color: var(--flame); }

.game-tabs { display: flex; gap: 0; border: 2px solid var(--ink); }
.game-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 14px 8px;
  background: var(--chalk2); border: none; border-right: 2px solid var(--ink);
  color: var(--muted); cursor: pointer; transition: all 0.18s;
  font-family: "IBM Plex Sans", sans-serif;
}
.game-tab:last-child { border-right: none; }
.game-tab i { font-size: 1.1rem; color: var(--muted); }
.game-tab span { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.game-tab small { font-size: 0.68rem; color: var(--muted); }
.game-tab.active { background: var(--ink); }
.game-tab.active i { color: var(--gold); }
.game-tab.active span { color: var(--white); }
.game-tab.active small { color: rgba(255,255,255,0.5); }

.info-banner { padding: 14px 18px; border-left: 4px solid; margin-bottom: 0; background: var(--chalk2); }
.lotto-649-bg  { border-color: var(--gold); }
.lotto-max-bg  { border-color: var(--flame); }
.daily-grand-bg{ border-color: var(--success); }
.info-banner h3 { color: var(--ink); font-size: 0.9rem; margin-bottom: 3px; text-transform: none; letter-spacing: 0; }
.info-banner p  { color: var(--muted); font-size: 0.8rem; }

.selection-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; font-style: italic; }
.selection-label span { color: var(--flame); font-weight: 700; font-style: normal; }
.number-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.number-btn {
  width: 38px; height: 38px;
  background: var(--chalk2); border: 2px solid var(--border2);
  color: var(--ink); font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: all 0.15s;
  font-family: "Syne", sans-serif;
  display: flex; align-items: center; justify-content: center;
}
.number-btn:hover { border-color: var(--flame); color: var(--flame); background: var(--white); }
.number-btn.selected {
  background: var(--flame); border-color: var(--flame);
  color: var(--white);
}
.number-grid.small .number-btn { width: 34px; height: 34px; font-size: 0.72rem; }
.selected-numbers { font-size: 0.8rem; color: var(--muted); font-style: italic; }
.selected-numbers strong { color: var(--flame); font-style: normal; }

.radio-card { cursor: pointer; }
.date-options { display: flex; gap: 0; border: 2px solid var(--ink); }
.radio-card input { display: none; }
.radio-content {
  flex: 1; padding: 14px 16px;
  background: var(--chalk2); border: none; border-right: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 3px;
  transition: all 0.18s; cursor: pointer;
}
.radio-card:last-child .radio-content { border-right: none; }
.radio-card input:checked ~ .radio-content { background: var(--ink); }
.radio-card input:checked ~ .radio-content i { color: var(--gold); }
.radio-card input:checked ~ .radio-content strong { color: var(--white); }
.radio-card input:checked ~ .radio-content span { color: rgba(255,255,255,0.5); }
.radio-content i { color: var(--flame); margin-bottom: 3px; }
.radio-content strong { font-size: 0.85rem; color: var(--ink); font-family: "Syne",sans-serif; }
.radio-content span { font-size: 0.75rem; color: var(--muted); }

.qty-btn {
  width: 42px; height: 42px; background: var(--chalk2); border: 2px solid var(--ink);
  color: var(--ink); cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.qty-btn:hover { background: var(--ink); color: var(--white); }
.quantity-spinner { display: flex; align-items: center; gap: 0; border: 2px solid var(--ink); width: fit-content; }
.quantity-spinner .qty-btn { border: none; border-right: 2px solid var(--ink); }
.quantity-spinner .qty-btn:last-child { border-right: none; border-left: 2px solid var(--ink); }
#quantity {
  width: 68px; height: 42px; text-align: center;
  background: var(--white); border: none; border-right: 2px solid var(--ink);
  color: var(--ink); font-family: "Syne", sans-serif;
  font-size: 1rem; font-weight: 700;
}
.quantity-info { font-size: 0.75rem; color: var(--muted); margin-top: 8px; font-style: italic; }

.promo-input-group { display: flex; gap: 0; border: 2px solid var(--ink); }
.promo-input-group input {
  flex: 1; background: var(--chalk2); border: none;
  border-right: 2px solid var(--ink); padding: 10px 14px;
  color: var(--ink); font-family: "IBM Plex Sans", sans-serif; font-size: 0.88rem;
}
.promo-input-group input:focus { outline: none; background: var(--white); }
.promo-message { margin-top: 7px; font-size: 0.78rem; }
.promo-message.success { color: var(--success); }
.promo-message.error   { color: var(--danger); }
.action-buttons { display: flex; gap: 10px; }

/* ── SUMMARY SIDEBAR ── */
.summary-sidebar { display: flex; flex-direction: column; gap: 0; }
.summary-card {
  background: var(--white); border: 2px solid var(--ink);
  border-bottom: none; padding: 22px;
}
.summary-card:last-child { border-bottom: 2px solid var(--ink); }
.summary-card h3 {
  color: var(--ink); font-family: "Syne", sans-serif;
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; border-bottom: 2px solid var(--ink); padding-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.summary-card h3 i { color: var(--flame); }
.summary-card h4 {
  color: var(--ink); font-family: "Syne", sans-serif;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.summary-card h4 i { color: var(--gold); }
.empty-cart { text-align: center; padding: 20px 0; color: var(--muted); }
.empty-cart i { font-size: 1.8rem; display: block; margin-bottom: 6px; color: var(--border2); }
.empty-cart p { font-size: 0.82rem; }
.cart-item { border: 1px solid var(--border); padding: 10px 12px; margin-bottom: 6px; }
.cart-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.cart-item-title { font-size: 0.82rem; color: var(--flame); font-weight: 700; font-family: "Syne",sans-serif; }
.remove-item { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.8rem; }
.remove-item:hover { color: var(--danger); }
.cart-item-details { font-size: 0.76rem; color: var(--muted); line-height: 1.5; }
.summary-totals { border-top: 2px solid var(--ink); margin: 12px 0; padding-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.total-row { display: flex; justify-content: space-between; font-size: 0.83rem; color: var(--muted); }
.total-row.grand-total { font-size: 0.92rem; color: var(--ink); margin-top: 4px; }
.discount span:last-child { color: var(--success); }
.payment-methods { margin-top: 12px; text-align: center; }
.payment-methods p { font-size: 0.72rem; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.payment-icons { display: flex; justify-content: center; gap: 12px; font-size: 1.4rem; color: var(--muted); }
.security-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--chalk2); border: 1px solid var(--border);
  padding: 10px 12px; margin-top: 12px;
}
.security-badge i { color: var(--success); }
.security-badge strong { display: block; font-size: 0.8rem; color: var(--ink); }
.security-badge small { font-size: 0.7rem; color: var(--muted); }
.tips-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.tips-card li { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--muted); }
.tips-card li i { color: var(--flame); font-size: 0.7rem; }
.age-warning-small { font-size: 0.78rem; color: var(--muted); font-style: italic; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink2);
  border-top: 3px solid var(--flame);
  padding: 44px 0 24px;
}
.footer-inner { max-width: 860px; margin: 0 auto; padding: 0 28px; text-align: center; }
.footer-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; line-height: 1.65; }
.footer-inner p strong { color: rgba(255,255,255,0.75); }
.footer-inner p em { color: rgba(255,255,255,0.55); font-style: italic; }
.footer-inner a { color: var(--gold); text-decoration: none; }
.footer-inner a:hover { color: var(--white); }
.footer-license {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,184,0,0.1); border: 1px solid rgba(245,184,0,0.25);
  padding: 8px 18px; margin: 12px auto;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}
.footer-license i { color: var(--gold); }
.footer-license strong { color: var(--gold); }
.footer-age-warning {
  font-size: 0.8rem; color: var(--flame-lt);
  font-weight: 600; margin: 10px 0;
  letter-spacing: 0.02em;
}
.footer-nav { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-nav a {
  font-size: 0.75rem; color: rgba(255,255,255,0.45); padding: 10px 16px;
  border-right: 1px solid rgba(255,255,255,0.08); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.08); }
.footer-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.footer-imgs { margin: 20px 0; }
.footer-imgs ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; list-style: none; }
.footer-imgs img { max-height: 48px; opacity: 0.5; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.footer-imgs img:hover { opacity: 0.85; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); margin-top: 14px; }

/* ── AGE MODAL ── */
.age-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,15,15,0.95);
  align-items: center; justify-content: center;
}
.age-modal-content {
  background: var(--chalk); border: 3px solid var(--ink);
  max-width: 440px; width: 94%; overflow: hidden;
  box-shadow: 8px 8px 0 var(--flame);
}
.age-modal-header {
  background: var(--ink); padding: 26px 32px 22px;
  border-bottom: 3px solid var(--flame); text-align: center;
}
.age-modal-header i { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; display: block; }
.age-modal-header h2 { font-size: 1.3rem; color: var(--white); }
.age-modal-body { padding: 28px 32px; }
.age-icon { text-align: center; font-size: 2.5rem; color: var(--flame); margin-bottom: 14px; }
.age-main-text { text-align: center; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.age-sub-text { text-align: center; font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.age-warning-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--chalk2); border-left: 4px solid var(--flame);
  padding: 14px; margin-bottom: 20px;
}
.age-warning-box i { color: var(--flame); flex-shrink: 0; margin-top: 2px; }
.age-warning-box strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 3px; }
.age-warning-box p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.age-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.age-help-text { text-align: center; font-size: 0.76rem; color: var(--muted); }

/* ── FAB ── */
.fab-button {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: var(--flame); color: var(--white);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 4px 4px 0 var(--ink);
}
.fab-button:hover { background: var(--ink); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--flame); }

/* ── POLICY PAGES ── */
.policy-section { background: var(--chalk); padding: 60px 0; }
.policy-card {
  background: var(--white); border: 2px solid var(--ink);
  padding: 48px 56px; max-width: 820px; margin: 0 auto;
}
.policy-card h2 {
  color: var(--ink); font-size: 1rem; margin: 32px 0 10px;
  padding-top: 28px; border-top: 2px solid var(--ink);
  font-family: "Syne",sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.policy-card h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.policy-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; line-height: 1.75; }
.policy-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.policy-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--muted); }
.policy-card li i { color: var(--flame); flex-shrink: 0; margin-top: 2px; }
.policy-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.policy-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.policy-meta i { color: var(--flame); }

/* ── AUTH PAGES ── */
.auth-section { background: var(--chalk); padding: 60px 0; }
.auth-card {
  background: var(--white); border: 2px solid var(--ink);
  padding: 40px; max-width: 500px; margin: 0 auto;
  box-shadow: 6px 6px 0 var(--ink);
}
.auth-card h2 { color: var(--ink); margin-bottom: 4px; font-size: 1.8rem; }
.auth-card .subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-family: "Syne",sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--chalk2); border: 2px solid var(--ink);
  padding: 11px 14px; color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif; font-size: 0.88rem;
  transition: border-color 0.18s, background 0.18s; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--flame); background: var(--white);
}
.form-group.error input, .form-group.error select { border-color: var(--danger); }
.field-error { font-size: 0.74rem; color: var(--danger); margin-top: 4px; display: none; }
.password-toggle-wrap { position: relative; }
.password-toggle-wrap input { padding-right: 44px; }
.toggle-pw {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--muted); cursor: pointer;
}
.toggle-pw:hover { color: var(--flame); }
.password-strength { height: 3px; margin-top: 6px; transition: all 0.3s; background: var(--border2); }
.password-strength.weak   { background: var(--danger); width: 30%; }
.password-strength.medium { background: var(--gold); width: 65%; }
.password-strength.strong { background: var(--success); width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.form-check input[type=checkbox] { margin-top: 2px; accent-color: var(--flame); flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--muted); }
.form-check label a { color: var(--flame); }
.auth-footer { text-align: center; margin-top: 18px; font-size: 0.82rem; color: var(--muted); }
.auth-footer a { color: var(--flame); text-decoration: none; }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 2px; background: var(--ink); }
.divider span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; white-space: nowrap; }

/* ── REGISTRATION STEPS ── */
.reg-steps { display: flex; gap: 0; margin-bottom: 32px; border: 2px solid var(--ink); }
.reg-step { flex: 1; display: flex; align-items: center; gap: 0; border-right: 2px solid var(--ink); }
.reg-step:last-child { border-right: none; }
.step-dot {
  width: 36px; height: 36px; flex-shrink: 0;
  border-right: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: var(--muted);
  font-family: "Syne",sans-serif; background: var(--chalk2);
  transition: all 0.3s;
}
.reg-step.active .step-dot { background: var(--flame); color: var(--white); border-color: var(--flame); }
.reg-step.done .step-dot { background: var(--success); color: var(--white); border-color: var(--success); }
.step-line { flex: 1; }
.form-step { display: none; }
.form-step.active { display: block; }
.step-nav { display: flex; gap: 10px; margin-top: 22px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--ink); }
.about-text { padding: 44px; border-right: 2px solid var(--ink); }
.about-img-placeholder {
  aspect-ratio: unset; min-height: 320px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; color: var(--gold);
}
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 2px solid var(--ink); border-top: none; }
.stat-box {
  padding: 28px 24px; text-align: center; background: var(--white);
  border-right: 2px solid var(--ink);
}
.stat-box:last-child { border-right: none; }
.stat-value { font-family: "Syne",sans-serif; font-size: 2.2rem; color: var(--flame); font-weight: 800; letter-spacing: -0.04em; }
.stat-label { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-info { display: flex; flex-direction: column; gap: 0; border: 2px solid var(--ink); }
.contact-item {
  background: var(--white); border-bottom: 2px solid var(--ink);
  padding: 22px; display: flex; align-items: flex-start; gap: 14px;
  transition: background 0.18s;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: var(--chalk2); }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--flame); display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1rem;
}
.contact-item strong { display: block; color: var(--ink); font-size: 0.85rem; margin-bottom: 3px; font-family: "Syne",sans-serif; font-weight: 700; }
.contact-item p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.contact-form-card { background: var(--white); border: 2px solid var(--ink); padding: 32px; box-shadow: 5px 5px 0 var(--ink); }
.contact-form-card h3 {
  color: var(--ink); font-family: "Syne",sans-serif;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 2px solid var(--ink); padding-bottom: 12px;
}
.contact-form-card h3 i { color: var(--flame); }
#formSuccess {
  display: none; background: var(--chalk2); border-left: 4px solid var(--success);
  padding: 22px; text-align: center; margin-bottom: 16px;
}
#formSuccess i { font-size: 1.8rem; color: var(--success); display: block; margin-bottom: 8px; }
#formSuccess h3 { color: var(--ink); margin-bottom: 4px; font-family: "Syne",sans-serif; font-weight: 700; }
#formSuccess p { color: var(--muted); font-size: 0.85rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .lottery-grid { grid-template-columns: 1fr; gap: 0; }
  .lottery-grid .lottery-card { border-bottom: none; }
  .lottery-grid .lottery-card:last-child { border-bottom: 2px solid var(--ink); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .steps-grid .step-card { border-right: none; border-bottom: none; }
  .steps-grid .step-card:last-child { border-bottom: 2px solid var(--ink); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .builder-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { border-right: none; border-bottom: 2px solid var(--ink); }
  .contact-layout { grid-template-columns: 1fr; }
  .responsible-banner { flex-direction: column; text-align: center; }
  .policy-card { padding: 28px 24px; }
  .date-options { flex-direction: column; border: none; gap: 2px; }
  .date-options .radio-card .radio-content { border-right: none; border: 2px solid var(--ink); }
  .form-row { grid-template-columns: 1fr; }
  .game-tabs { flex-direction: column; border: 2px solid var(--ink); gap: 0; }
  .game-tab { border-right: none; border-bottom: 2px solid var(--ink); }
  .game-tab:last-child { border-bottom: none; }
  .hero-stripe { display: none; }
}
@media (max-width: 640px) {
  .nav-menu {
    display: none; flex-direction: column; position: fixed;
    inset: 68px 0 0; background: var(--ink); padding: 16px; gap: 0;
    overflow-y: auto; border-top: 2px solid var(--flame);
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 14px 16px; font-size: 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-menu a:hover { background: rgba(255,255,255,0.05); }
  .btn-login, .btn-register { margin-left: 0; }
  .mobile-toggle { display: flex; }
  .hero-buttons { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row .stat-box { border-right: none; border-bottom: 2px solid var(--ink); }
  .steps-grid { grid-template-columns: 1fr; }
  .action-buttons { flex-direction: column; }
  .reg-steps { flex-wrap: wrap; }
}
