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

:root {
  --bg: #050505;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --gold: #ffd84d;
  --gold-dark: #ffb400;
  --gold-gradient: linear-gradient(135deg, #ffe566 0%, #ffb400 50%, #ff9500 100%);
  --green: #00ff88;
  --purple: #a855f7;
  --text: #ffffff;
  --text-muted: #9ca3af;
  --border: rgba(255, 216, 77, 0.15);
  --glow-gold: 0 0 40px rgba(255, 184, 0, 0.4);
  --glow-green: 0 0 30px rgba(0, 255, 136, 0.3);
  --glow-purple: 0 0 40px rgba(168, 85, 247, 0.4);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NAV ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
}

.logo-icon { font-size: 32px; }
.logo-text .gold { color: var(--gold); }

.nav-cta {
  background: var(--gold-gradient);
  color: #000;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-gold);
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 17px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 3px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow--gold {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-glow--purple {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.hero-collage-wrap {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: visible;
}

.hero-collage {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 60px rgba(255, 184, 0, 0.25));
  animation: heroFloat 5s ease-in-out infinite;
  transition: transform 0.4s, filter 0.4s;
}

.hero-collage-wrap.pulse .hero-collage {
  animation: heroPulse 0.8s ease;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes heroPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 60px rgba(255, 184, 0, 0.25)); }
  40% { transform: scale(1.04); filter: drop-shadow(0 0 50px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 80px rgba(255, 184, 0, 0.5)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 60px rgba(255, 184, 0, 0.25)); }
}

.hero-collage-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.float-prize {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.5)) drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
  animation: floatPrize 4s ease-in-out infinite;
  pointer-events: none;
}

.float-prize--1 { width: 72px; height: 72px; top: 5%; right: -8%; animation-delay: 0s; border-radius: 50%; }
.float-prize--2 { width: 90px; height: 60px; bottom: 12%; left: -10%; animation-delay: -1.5s; }
.float-prize--3 { width: 80px; height: 55px; top: 8%; left: -6%; animation-delay: -3s; }

@keyframes floatPrize {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Epic prize image glow */
.prize-img,
.category-img img,
.showcase-item img,
.win-row img,
.collage-img {
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.35)) drop-shadow(0 4px 16px rgba(255, 184, 0, 0.2));
}

.hero-text {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 16px;
}

.line-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: linear-gradient(135deg, #ffe566, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.green-glow { color: var(--green); text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }

.hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* Mystery Box */
.mystery-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  cursor: pointer;
  z-index: 5;
}

.box-body {
  width: 100%;
  height: 130px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 2px solid rgba(255, 184, 0, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.box-logo { font-size: 48px; z-index: 2; }

.box-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 216, 77, 0.08) 50%, transparent 60%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.box-lid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(145deg, #2a2a2a, #111);
  border: 2px solid rgba(255, 184, 0, 0.5);
  border-radius: 12px 12px 4px 4px;
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
}

.mystery-box.open .box-lid {
  transform: rotateX(-120deg) translateY(-20px);
}

.box-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.8) 0%, rgba(255, 149, 0, 0.4) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.mystery-box.open .box-burst {
  animation: burst 0.8s ease-out forwards;
}

@keyframes burst {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 300px; height: 300px; opacity: 0; }
}

.box-prize {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  text-align: center;
  z-index: 10;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.mystery-box.open .box-prize {
  transform: translate(-50%, -80%) scale(1);
}

.prize-icon { font-size: 48px; display: block; }
.prize-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 2px;
}

.mystery-box.shake { animation: boxShake 0.5s ease; }

@keyframes boxShake {
  0%, 100% { transform: translate(-50%, -50%) rotate(0); }
  20% { transform: translate(-52%, -50%) rotate(-3deg); }
  40% { transform: translate(-48%, -50%) rotate(3deg); }
  60% { transform: translate(-52%, -50%) rotate(-2deg); }
  80% { transform: translate(-48%, -50%) rotate(2deg); }
}

/* Orbit items */
.prize-orbit { position: absolute; inset: 0; }

.orbit-item {
  position: absolute;
  border-radius: 8px;
  border: 2px solid rgba(255, 184, 0, 0.3);
  object-fit: cover;
  background: #111;
  animation: orbit 8s linear infinite;
}

.orbit-item--1 { width: 80px; height: 55px; top: 0; left: 50%; animation-delay: 0s; }
.orbit-item--2 { width: 55px; height: 55px; top: 50%; right: 0; animation-delay: -2s; border-radius: 50%; }
.orbit-item--3 { width: 55px; height: 55px; bottom: 0; left: 20%; animation-delay: -4s; }
.orbit-item--4 { width: 70px; height: 50px; top: 30%; left: 0; animation-delay: -6s; }

@keyframes orbit {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
}

.floating-packs { position: absolute; inset: 0; pointer-events: none; }

.mini-pack {
  position: absolute;
  font-size: 28px;
  animation: floatPack 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.5));
}

.mini-pack--1 { top: 10%; right: 15%; animation-delay: 0s; }
.mini-pack--2 { bottom: 15%; left: 10%; animation-delay: -1.5s; }
.mini-pack--3 { top: 40%; right: 5%; animation-delay: -3s; }

@keyframes floatPack {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* CTA Button */
.cta {
  position: relative;
  display: inline-block;
  background: var(--gold-gradient);
  color: #000;
  padding: 18px 48px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-gold);
}

.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: ctaShine 2.5s infinite;
}

@keyframes ctaShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-badge {
  margin-top: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-badge strong { font-size: 24px; }

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  flex-wrap: wrap;
  max-width: 800px;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 0 30px;
}

.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 2px;
}

.stat-item strong::after { content: '+'; }

.stat-item span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── CATEGORIES ── */
.categories { background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-gold);
  border-color: rgba(255, 184, 0, 0.4);
}

.category-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s, filter 0.4s;
  background: #0a0a0a;
}

.category-card:hover .category-img img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 30px rgba(255, 184, 0, 0.4));
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.category-icon {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  background: var(--bg-card);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 184, 0, 0.3);
  z-index: 2;
}

.category-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  margin-top: 36px;
  text-align: center;
  color: var(--gold);
}

.category-card p {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  padding: 4px 16px 20px;
}

/* ── WINS ── */
.wins { padding: 80px 24px; }

.wins-inner {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--glow-green);
}

.wins-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.wins-header h2 { font-size: 32px; }

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

.wins-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow: hidden;
  position: relative;
}

.win-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 12px 16px;
  animation: slideIn 0.5s ease;
}

.win-row img {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.win-user {
  font-size: 13px;
  color: var(--text-muted);
  min-width: 80px;
}

.win-prize {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}

.win-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--green);
  letter-spacing: 1px;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.legendary-drop {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-purple);
}

.legendary-crown { font-size: 40px; }

.legendary-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--purple);
}

.legendary-amount {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legendary-sparkle {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(168, 85, 247, 0.1) 50%, transparent 60%);
  animation: shine 2s infinite;
}

/* ── INTERACTIVE BOXES ── */
.opener { background: #080808; }

.boxes-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.interactive-box {
  position: relative;
  width: 120px;
  height: 140px;
  cursor: pointer;
  transition: transform 0.2s;
}

.interactive-box:hover { transform: translateY(-4px); }

.interactive-box--featured {
  width: 150px;
  height: 170px;
}

.interactive-box--featured .ib-body {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.ib-body {
  width: 100%;
  height: 110px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 2px solid rgba(255, 184, 0, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  position: relative;
}

.interactive-box--featured .ib-body { height: 130px; font-size: 56px; }

.ib-lid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(145deg, #2a2a2a, #111);
  border: 2px solid rgba(255, 184, 0, 0.4);
  border-radius: 10px 10px 2px 2px;
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.interactive-box.opened .ib-lid {
  transform: rotateX(-110deg) translateY(-10px);
}

.ib-burst {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.7) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.ib-burst--purple {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.7) 0%, transparent 70%);
}

.interactive-box.opened .ib-burst {
  animation: burst 0.7s ease-out forwards;
}

.ib-reveal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0);
  text-align: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
  z-index: 5;
  white-space: nowrap;
}

.interactive-box.opened .ib-reveal {
  transform: translateX(-50%) translateY(-60px) scale(1);
  opacity: 1;
}

.ib-icon { font-size: 36px; display: block; }
.ib-name { display: block; font-weight: 700; font-size: 13px; margin-top: 4px; }
.ib-value {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--green);
  letter-spacing: 1px;
}

.interactive-box.shake { animation: ibShake 0.4s ease; }

@keyframes ibShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px) rotate(-2deg); }
  75% { transform: translateX(4px) rotate(2deg); }
}

.opener-hint {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ── SHOWCASE ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.showcase-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.showcase-item--wide { grid-column: span 2; }

.showcase-item {
  background: #0a0a0a;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s, filter 0.4s;
  background: #0a0a0a;
}

.showcase-item:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 40px rgba(255, 184, 0, 0.35));
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--gold);
}

/* ── REVIEWS ── */
.reviews {
  background: linear-gradient(180deg, #080808, var(--bg));
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.review-card--featured {
  border-color: rgba(255, 184, 0, 0.4);
  box-shadow: var(--glow-gold);
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.review-card p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── FINAL CTA ── */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}

.final-glow {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-collage {
  position: relative;
  height: 120px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.collage-img {
  position: absolute;
  border-radius: 10px;
  border: 2px solid rgba(255, 184, 0, 0.3);
  object-fit: cover;
  background: #111;
  animation: collageFloat 4s ease-in-out infinite;
}

.collage-img--1 { width: 120px; height: 80px; top: 10px; left: 0; animation-delay: 0s; }
.collage-img--2 { width: 70px; height: 70px; top: 0; left: 50%; transform: translateX(-50%); border-radius: 50%; animation-delay: -1s; }
.collage-img--3 { width: 70px; height: 70px; bottom: 0; left: 30%; animation-delay: -2s; }
.collage-img--4 { width: 120px; height: 80px; top: 10px; right: 0; animation-delay: -3s; }

@keyframes collageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.collage-img--2 { animation-name: collageFloatCenter; }

@keyframes collageFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.final h2 { margin-bottom: 12px; }

.final p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 17px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.cta--big {
  font-size: 22px;
  padding: 22px 64px;
  border-radius: 16px;
}

/* ── FOOTER ── */
.footer {
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 70px 16px; }

  .hero-content { flex-direction: column-reverse; gap: 40px; }

  .hero-visual { width: 300px; height: 300px; }

  .float-prize { display: none; }

  .stats-bar { padding: 20px; gap: 16px; }

  .stat-divider { display: none; }

  .stat-item { padding: 8px 16px; }

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

  .showcase-item--large,
  .showcase-item--wide {
    grid-column: span 2;
  }

  .wins-inner { padding: 20px; }

  .win-user { display: none; }

  .cta--big { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .showcase-grid { grid-template-columns: 1fr; }

  .showcase-item--large,
  .showcase-item--wide { grid-column: span 1; }

  .boxes-row { gap: 16px; }

  .interactive-box { width: 100px; height: 120px; }

  .interactive-box--featured { width: 120px; height: 140px; }
}
