/* WinHunterz – Casino VIP: green felt + gold */
:root {
  --bg: #04150e;
  --bg-deep: #020c08;
  --bg-elevated: #0a2418;
  --card: #0c2a1c;
  --card-hover: #123524;
  --text: #f7f3e8;
  --muted: #9aaf9e;
  --line: rgba(240, 193, 75, 0.16);
  --gold: #f0c14b;
  --gold-2: #d4a017;
  --gold-soft: #ffe6a0;
  --green: #1a6b45;
  --green-bright: #2ecc71;
  --felt: #0a3d2a;
  --radius: 1.25rem;
  --shadow-gold: 0 14px 44px -10px rgba(240, 193, 75, 0.45);
  --font: Inter, system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.page { position: relative; min-height: 100vh; }

/* Top announcement strip */
.top-strip {
  position: relative;
  z-index: 55;
  background: linear-gradient(90deg, #062016, #0a3d2a 40%, #1a4a2e 60%, #062016);
  border-bottom: 1px solid rgba(240, 193, 75, 0.25);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}
.top-strip strong { color: #fff; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-2));
  box-shadow: 0 0 12px rgba(240, 193, 75, 0.6);
  transition: width 0.05s linear;
}

.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26, 107, 69, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(240, 193, 75, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(10, 61, 42, 0.5), transparent 50%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.orb-1 {
  width: 420px; height: 420px;
  top: -10%; left: -8%;
  background: rgba(26, 107, 69, 0.35);
}
.orb-2 {
  width: 380px; height: 380px;
  top: 40%; right: -12%;
  background: rgba(240, 193, 75, 0.12);
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  bottom: 5%; left: 30%;
  background: rgba(10, 61, 42, 0.4);
  animation-delay: -12s;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.12); }
}

/* Felt table texture overlay */
.felt-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(240, 193, 75, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 193, 75, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(2, 12, 8, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.5rem 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav-logo {
  height: 2.75rem;
  width: 2.75rem;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  border: none;
  filter: drop-shadow(0 0 10px rgba(240, 193, 75, 0.5));
}
.nav-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff8dc, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(240, 193, 75, 0.1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.nav-ig-desktop,
.nav-cta-desktop { display: none; }

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.55rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(240, 193, 75, 0.06);
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.75rem;
  padding-top: max(0.75rem, env(safe-area-inset-top));
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.open[hidden] { display: flex !important; }
.mobile-menu-panel {
  width: min(100%, 26rem);
  margin-top: 3.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(240, 193, 75, 0.28);
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(240, 193, 75, 0.12), transparent 55%),
    linear-gradient(165deg, #0f2e1f 0%, #061810 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  padding: 1rem 1rem 1.15rem;
  transform: translateY(-16px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(240, 193, 75, 0.12);
}
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.mobile-menu-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  border: none;
  filter: drop-shadow(0 4px 14px rgba(240, 193, 75, 0.45));
}
.mobile-menu-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  background: linear-gradient(135deg, #fff8dc, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mobile-menu-brand span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.mobile-menu-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(240, 193, 75, 0.1);
  font-weight: 600;
  font-size: 0.95rem;
}
.mobile-menu-links a:hover {
  background: rgba(240, 193, 75, 0.1);
  border-color: rgba(240, 193, 75, 0.3);
}
.mm-ico {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: rgba(240, 193, 75, 0.12);
  font-size: 1rem;
  flex-shrink: 0;
}
.mm-arrow { margin-left: auto; color: var(--gold); opacity: 0.7; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.mobile-menu-btn { width: 100%; border-radius: 0.9rem !important; min-height: 3rem; }
.mobile-menu-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .nav-inner { min-height: 4.35rem; }
  .nav-logo { height: 3rem; width: 3rem; }
  .nav-wordmark { font-size: 1.1rem; }
  .nav-links { display: flex; flex: 1; justify-content: center; }
  .nav-ig-desktop,
  .nav-cta-desktop { display: inline-flex; }
  .nav-burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* Instagram */
.btn-ig {
  background: rgba(240, 193, 75, 0.08);
  border: 1px solid rgba(240, 193, 75, 0.28);
  color: var(--gold-soft);
  border-radius: 999px;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
}
.btn-ig:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
  color: #fff;
}
.btn-ig-gradient {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(221, 42, 123, 0.45);
}
.btn-ig-gradient:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.ig-panel {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  border-radius: 1.25rem;
  border: 1px solid rgba(240, 193, 75, 0.22);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(15, 46, 31, 0.95), rgba(4, 21, 14, 0.98));
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.55);
  text-align: left;
}
.ig-panel-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 160px at 20% 0%, rgba(221, 42, 123, 0.12), transparent 55%);
  pointer-events: none;
}
.ig-panel-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.2rem 1.4rem;
  text-align: center;
}
.ig-avatar-wrap {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  flex-shrink: 0;
}
.ig-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  background: transparent;
}
.ig-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(#0a2418, #0a2418) padding-box,
    linear-gradient(45deg, #f58529, #dd2a7b, #8134af) border-box;
  pointer-events: none;
}
.ig-copy .section-tag { margin-bottom: 0.4rem; }
.ig-copy h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.ig-copy p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.ig-copy p strong { color: var(--gold); }
.ig-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ig-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4rem;
}
.ig-stats strong {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--gold);
}
.ig-stats span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 640px) {
  .ig-panel-content {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.15rem;
    padding: 1.4rem 1.35rem;
  }
  .ig-copy { flex: 1; }
  .ig-stats { justify-content: flex-start; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.15rem;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn-xl { padding: 0.95rem 1.75rem; font-size: 1rem; }
.btn-cta {
  background: linear-gradient(135deg, #ffe08a 0%, var(--gold) 40%, var(--gold-2) 100%);
  color: #1a1200;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 18px 50px -8px rgba(240, 193, 75, 0.55);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(240, 193, 75, 0.06);
  border: 1px solid rgba(240, 193, 75, 0.28);
  color: var(--gold-soft);
}
.btn-ghost:hover {
  background: rgba(240, 193, 75, 0.12);
  border-color: rgba(240, 193, 75, 0.45);
}
.pulse-glow { animation: pulse-glow 2.4s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 40px -10px rgba(240, 193, 75, 0.4); }
  50% { box-shadow: 0 16px 54px -6px rgba(240, 193, 75, 0.7); }
}
.btn-icon {
  display: inline-flex;
  width: 1.4rem; height: 1.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.65rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fff8dc, var(--gold) 45%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0 3.5rem;
}
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.brand-logo-wrap {
  position: relative;
  width: min(17.5rem, 70vw);
  height: min(17.5rem, 70vw);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  /* circular clip so NOTHING square can stick out */
  border-radius: 50%;
}
/* True circle logo – transparent corners, fills the ring cleanly */
.brand-logo {
  position: relative;
  z-index: 3;
  width: 86%;
  height: 86%;
  object-fit: contain;
  border-radius: 50%;
  /* hard clip to circle (kills any residual square fringe) */
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  border: none;
  background: transparent;
  box-shadow: 0 14px 40px rgba(240, 193, 75, 0.35);
  animation: logo-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both,
             logo-float 4.8s ease-in-out 0.9s infinite;
  will-change: transform;
}
.brand-logo-glow {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 193, 75, 0.35), rgba(26, 107, 69, 0.18) 50%, transparent 70%);
  animation: glow-breathe 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
  /* glow only inside circle */
  clip-path: circle(50% at 50% 50%);
}
.brand-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(240, 193, 75, 0.9) 10%,
    transparent 22%,
    transparent 48%,
    rgba(212, 160, 23, 0.65) 58%,
    transparent 72%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: ring-spin 10s linear infinite;
  z-index: 4;
  pointer-events: none;
}
/* Thin gold rim between logo and spinning ring */
.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 5.5%;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 193, 75, 0.35);
  z-index: 4;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.25);
}
.brand-logo-orbit {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 193, 75, 0.28);
  animation: ring-spin 18s linear infinite reverse;
  z-index: 0;
}
@keyframes logo-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.brand-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.brand-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.35rem;
  letter-spacing: 0.04em;
}
.brand-tagline em {
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 600;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid rgba(240, 193, 75, 0.18);
  background: rgba(10, 61, 42, 0.4);
}
.pill.live { color: var(--gold-soft); border-color: rgba(240, 193, 75, 0.35); }
.pill .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 8px var(--green-bright);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.hero-play { min-width: min(100%, 18rem); }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(240, 193, 75, 0.2);
  background: linear-gradient(165deg, rgba(12, 42, 28, 0.9), rgba(4, 21, 14, 0.95));
  box-shadow: inset 0 1px 0 rgba(240, 193, 75, 0.08);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
}
.trust-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-divider {
  width: 1px;
  height: 2rem;
  background: rgba(240, 193, 75, 0.2);
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(10, 61, 42, 0.25), transparent);
}
.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 193, 75, 0.25);
  background: rgba(240, 193, 75, 0.08);
}
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

/* Deals */
.deals-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .deals-grid { grid-template-columns: 1fr 1fr; }
}
.deal-card {
  position: relative;
  border-radius: 1.35rem;
  padding: 1.35rem 1.25rem 1.25rem;
  border: 1px solid rgba(240, 193, 75, 0.18);
  background:
    radial-gradient(400px 180px at 100% 0%, rgba(240, 193, 75, 0.1), transparent 55%),
    linear-gradient(165deg, #0f2e1f 0%, #071a12 100%);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.deal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.deal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 193, 75, 0.4);
  box-shadow: 0 28px 60px -20px rgba(240, 193, 75, 0.25);
}
.deal-card.featured {
  border-color: rgba(240, 193, 75, 0.5);
  box-shadow: 0 0 0 1px rgba(240, 193, 75, 0.15), 0 24px 60px -18px rgba(240, 193, 75, 0.35);
}
.deal-card.featured::after {
  content: "TOP TARGET";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.deal-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding-right: 4.5rem;
}
.deal-logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.9rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.deal-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.deal-rank {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.deal-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}
.deal-bonus {
  margin-bottom: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(240, 193, 75, 0.15);
}
.bonus-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.pct {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff8dc, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.deal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}
.tag-ex {
  background: rgba(240, 193, 75, 0.15) !important;
  color: var(--gold) !important;
  border-color: rgba(240, 193, 75, 0.35) !important;
}
.tag-ns {
  background: rgba(46, 204, 113, 0.12);
  color: #7dffa8;
  border-color: rgba(46, 204, 113, 0.3);
}
.deal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.no-code {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.deal-actions .btn-cta {
  width: 100%;
  min-height: 3rem;
  font-size: 0.95rem;
}

/* Why */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
.why-card {
  padding: 1.35rem 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(240, 193, 75, 0.14);
  background: linear-gradient(165deg, rgba(15, 46, 31, 0.9), rgba(4, 21, 14, 0.95));
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(240, 193, 75, 0.35);
  transform: translateY(-2px);
}
.why-icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(240, 193, 75, 0.1);
  border: 1px solid rgba(240, 193, 75, 0.2);
}
.why-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
}
.why-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
  margin-inline: auto;
  counter-reset: none;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(240, 193, 75, 0.14);
  background: rgba(12, 42, 28, 0.5);
}
.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gold);
  min-width: 2.5rem;
  line-height: 1;
}
.step-body h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* SEO */
.seo-longform { padding-bottom: 3rem; }
.seo-wrap {
  max-width: 42rem;
  margin-inline: auto;
}
.seo-content h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin: 1.5rem 0 0.55rem;
}
.seo-content p, .seo-content li {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.seo-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.seo-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.seo-faq details {
  border: 1px solid rgba(240, 193, 75, 0.14);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  background: rgba(0, 0, 0, 0.2);
}
.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-family: var(--display);
  list-style: none;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq details[open] summary { color: var(--gold); margin-bottom: 0.45rem; }
.seo-faq p { margin: 0; font-size: 0.92rem; }

/* Final CTA */
.section-final { padding-top: 1rem; }
.final-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(240, 193, 75, 0.35);
  background:
    radial-gradient(500px 200px at 50% 0%, rgba(240, 193, 75, 0.18), transparent 55%),
    linear-gradient(165deg, #13402a 0%, #061810 100%);
  box-shadow: 0 24px 60px -20px rgba(240, 193, 75, 0.3);
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 28rem;
  margin-inline: auto;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 5.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 1.75rem; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  background: transparent;
  border: none;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 0 14px rgba(240, 193, 75, 0.4));
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); }
.footer-location {
  margin-top: 0.35rem !important;
  font-size: 0.9rem !important;
  color: var(--text) !important;
}
.footer-location strong { color: var(--gold); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-nav a:hover { color: var(--gold); }

.footer-help {
  border: 1px solid rgba(240, 193, 75, 0.2);
  border-radius: 1.15rem;
  padding: 1.25rem 1.15rem 1.35rem;
  background:
    radial-gradient(500px 160px at 10% 0%, rgba(240, 193, 75, 0.08), transparent 55%),
    linear-gradient(165deg, #0f2e1f 0%, #061810 100%);
  text-align: left;
}
.footer-18-block {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.badge-18 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.55rem;
  border-radius: 0.75rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 8px 24px -8px rgba(240, 193, 75, 0.55);
}
.footer-help h2 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.footer-help p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.footer-help p strong { color: var(--gold); }
.help-label {
  font-size: 0.72rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
  font-weight: 700;
  margin-bottom: 0.45rem !important;
}
.help-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0 0 1rem;
}
.help-links a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.help-links a:hover {
  color: var(--gold);
  border-color: rgba(240, 193, 75, 0.4);
}
.help-note {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.fbadge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240, 193, 75, 0.28);
  background: rgba(240, 193, 75, 0.07);
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.9;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  line-height: 1.55;
}

/* Sticky 18+ bar */
.age-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(2, 12, 8, 0.94);
  border-top: 1px solid rgba(240, 193, 75, 0.3);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
.age-banner-inner {
  width: min(1120px, calc(100% - 1.25rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  min-height: 2.75rem;
}
.age-banner-18 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.45rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.age-banner p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #b8c9bc;
}
.age-banner strong { color: #fff; font-weight: 700; }
.age-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Age gate */
body.age-locked { overflow: hidden; }
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.age-gate[hidden] { display: none !important; }
.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 8, 0.88);
  backdrop-filter: blur(12px);
}
.age-gate-card {
  position: relative;
  width: min(100%, 24rem);
  padding: 1.75rem 1.35rem 1.35rem;
  border-radius: 1.35rem;
  text-align: center;
  border: 1px solid rgba(240, 193, 75, 0.3);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(240, 193, 75, 0.14), transparent 55%),
    linear-gradient(165deg, #0f2e1f 0%, #061810 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: gate-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes gate-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.age-gate-logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  background: transparent;
  border: none;
  margin: 0 auto 0.75rem;
  filter: drop-shadow(0 8px 20px rgba(240, 193, 75, 0.4));
}
.age-gate-badge {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.age-gate-card h1 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
}
.age-gate-text {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.age-gate-text strong { color: var(--gold); }
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.age-gate-yes, .age-gate-no { width: 100%; min-height: 2.85rem; }
.age-gate-note {
  margin-top: 0.9rem;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .age-banner p { font-size: 0.65rem; }
  .footer { padding-bottom: 6.25rem; }
  .deal-card.featured::after { font-size: 0.58rem; top: 0.75rem; right: 0.75rem; }
}
@media (min-width: 768px) {
  .footer-help { padding: 1.5rem; }
  .brand-logo-wrap {
    width: 20rem;
    height: 20rem;
  }
}
