/* ================================================================
   MAIN STYLESHEET — Game Vault 999
   ================================================================
   Table of Contents:
   1. Reset & Variables
   2. Layout
   3. Background Noise
   4. Top Promo Banner
   5. Header
   6. Hero
   7. Trust Strip
   8. Payment Badges
   9. Quick Links
   10. Social Proof
   11. Section Head
   12. Games Grid (Sign-up Cards)
   13. Download Section (Download Cards)
   14. Footer
   15. Animations
   16. Responsive
   ================================================================ */

/* ====== 1. RESET & VARIABLES ====== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0e1a;
  --surface: #111827;
  --surface-2: #1e293b;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --success: #10b981;
  --success-light: #34d399;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
li {
  list-style: none;
}

/* ====== 2. LAYOUT ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== 3. BACKGROUND NOISE ====== */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====== 4. TOP PROMO BANNER ====== */
.top-banner {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.top-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: bannerShimmer 3s ease-in-out infinite;
}
@keyframes bannerShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.top-banner .code {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* ====== 5. HEADER ====== */
.site-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo img {
  height: 36px;
  border-radius: 8px;
}
.logo .accent {
  color: var(--gold);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.breadcrumb {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary-light);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--text);
}
.breadcrumb span:last-child {
  color: var(--text-muted);
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 120px;
  white-space: nowrap;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }
}

/* ====== 6. HERO ====== */
.hero {
  text-align: center;
  padding: 56px 0 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero .gradient {
  background: linear-gradient(135deg, var(--gold), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ====== 7. TRUST STRIP ====== */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item ion-icon {
  font-size: 18px;
  color: var(--success);
}

/* ====== 8. PAYMENT BADGES ====== */
.payment-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.pay-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}
.pay-badge:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.pay-badge img {
  height: 20px;
  width: auto;
}

/* ====== 9. QUICK LINKS ====== */
.quick-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.ql {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ql ion-icon {
  font-size: 18px;
}
.ql.dep {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
}
.ql.dep:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}
.ql.wdw {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.ql.wdw:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

/* ====== 10. SOCIAL PROOF ====== */
.social-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-bottom: 48px;
}
.social-stat {
  text-align: center;
}
.social-stat .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
.social-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.social-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ====== 11. SECTION HEAD ====== */
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ====== 12. GAMES GRID (Sign-up Cards) ====== */
.games-section {
  padding-bottom: 60px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.game-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.game-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.gc-banner {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--surface-2);
}
.gc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .gc-banner img {
  transform: scale(1.06);
}

.gc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gc-body {
  padding: 14px 16px 18px;
}

.gc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.gc-name {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gc-bonus {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  white-space: nowrap;
}

.gc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.gc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.gc-meta ion-icon {
  font-size: 14px;
}

.gc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.gc-cta:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}
.gc-cta ion-icon {
  font-size: 16px;
}

/* Featured card */
.game-card.featured {
  border-color: rgba(245, 158, 11, 0.25);
}
.game-card.featured .gc-cta {
  background: linear-gradient(135deg, var(--success), #059669);
}
.game-card.featured .gc-cta:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* ====== 13. DOWNLOAD SECTION (Download Cards) ====== */
.download-section {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}
.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(16, 185, 129, 0.05) 40%,
    rgba(16, 185, 129, 0.02) 100%
  );
  pointer-events: none;
}
.dl-head {
  text-align: center;
  margin-bottom: 40px;
}
.dl-head h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.dl-head .gradient {
  background: linear-gradient(135deg, var(--success), var(--success-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-head p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.dl-game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.dl-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}
.dl-game-card .gc-banner {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.dl-game-card .gc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dl-game-card:hover .gc-banner img {
  transform: scale(1.06);
}
.dl-game-card .gc-banner .dl-platform {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}
.dl-platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.dl-platform-tag.android {
  background: rgba(16, 185, 129, 0.85);
  color: #fff;
}
.dl-platform-tag.ios {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dl-platform-tag ion-icon {
  font-size: 12px;
}
.dl-game-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.dl-game-body .gc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.dl-game-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.dl-game-info span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dl-game-info ion-icon {
  font-size: 14px;
  color: var(--success);
}
.dl-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  margin-top: auto;
}
.dl-download-btn ion-icon {
  font-size: 18px;
}
.dl-download-btn:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}
.dl-game-card.featured {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}
.dl-game-card.featured .gc-banner::after {
  content: "⭐ Most Popular";
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.dl-stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.dl-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.dl-stat ion-icon {
  font-size: 16px;
  color: var(--success);
}
.dl-stat strong {
  color: var(--text);
}

/* ====== 14. FOOTER ====== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo {
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary-light);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ====== 15. ANIMATIONS (Intersection Observer) ====== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.anim.in-view {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.05s;
}
.d2 {
  transition-delay: 0.1s;
}
.d3 {
  transition-delay: 0.15s;
}
.d4 {
  transition-delay: 0.2s;
}
.d5 {
  transition-delay: 0.25s;
}
.d6 {
  transition-delay: 0.3s;
}
.d7 {
  transition-delay: 0.05s;
}
.d8 {
  transition-delay: 0.1s;
}
.d9 {
  transition-delay: 0.15s;
}
.d10 {
  transition-delay: 0.2s;
}
.d11 {
  transition-delay: 0.25s;
}
.d12 {
  transition-delay: 0.05s;
}
.d13 {
  transition-delay: 0.1s;
}
.d14 {
  transition-delay: 0.15s;
}
.d15 {
  transition-delay: 0.2s;
}
.d16 {
  transition-delay: 0.25s;
}

/* ====== 16. HERO CTA ====== */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.btn-hero-primary ion-icon {
  font-size: 20px;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-hero-secondary ion-icon {
  font-size: 20px;
}

/* ====== 17. URGENCY COUNTDOWN ====== */
.hero-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-urgency ion-icon {
  font-size: 16px;
  color: var(--gold);
}
.hero-urgency strong {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.urgency-dot {
  width: 4px;
  height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
}

/* ====== 18. BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ====== 19. FLOATING MOBILE CTA ====== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.floating-cta.visible {
  transform: translateY(0);
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.floating-cta-btn ion-icon {
  font-size: 20px;
}

/* ====== 20. WINNER TOAST NOTIFICATIONS ====== */
.winner-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.winner-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  animation: toastSlideIn 0.4s ease forwards;
}
.winner-toast.exit {
  animation: toastSlideOut 0.3s ease forwards;
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.winner-info {
  flex: 1;
  min-width: 0;
}
.winner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.winner-detail {
  font-size: 11px;
  color: var(--text-muted);
}
.winner-detail strong {
  color: var(--success);
}
.winner-time {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ====== 21. SEO CONTENT SECTION ====== */
.seo-content {
  padding: 60px 0 40px;
}
.seo-block {
  margin-bottom: 40px;
}
.seo-block h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.seo-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.seo-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.seo-block p strong {
  color: var(--text);
}
.seo-steps {
  list-style: decimal;
  padding-left: 24px;
  margin: 16px 0;
}
.seo-steps li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}
.seo-steps li strong {
  color: var(--text);
}
.seo-games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.seo-games-list span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.seo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.seo-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.seo-feature ion-icon {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.seo-feature strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.seo-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ====== 22. FAQ SECTION ====== */
.faq-section {
  padding: 40px 0 60px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: var(--accent);
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}
.faq-answer {
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-answer p strong {
  color: var(--text);
}

/* ====== 23. RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 28px;
  }
  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .trust-strip {
    gap: 12px 20px;
  }
  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gc-banner {
    height: 120px;
  }
  .gc-body {
    padding: 10px 12px 14px;
  }
  .gc-name {
    font-size: 14px;
  }
  .gc-meta {
    font-size: 11px;
    gap: 8px;
  }
  .gc-cta {
    padding: 9px;
    font-size: 12px;
  }
  .gc-bonus {
    font-size: 11px;
  }
  .social-banner {
    gap: 14px 20px;
    padding: 16px;
  }
  .social-divider {
    display: none;
  }
  .header-stats span {
    display: none;
  }
  .payment-strip {
    gap: 6px;
  }
  .pay-badge {
    padding: 6px 10px;
    font-size: 12px;
  }
  .btn-hero-primary {
    padding: 12px 24px;
    font-size: 15px;
  }
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 15px;
  }
  .floating-cta {
    display: block;
  }
  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .winner-toast-container {
    bottom: 80px;
    left: 12px;
  }
  .winner-toast {
    min-width: 240px;
    max-width: 300px;
    padding: 10px 12px;
  }
  .seo-features {
    grid-template-columns: 1fr;
  }
  .seo-block h2 {
    font-size: 24px;
  }
  .seo-block h3 {
    font-size: 19px;
  }
  .faq-item summary {
    padding: 14px 18px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 18px 14px;
  }
  .site-nav {
    display: none;
  }
  .breadcrumb {
    display: none;
  }
}

@media (max-width: 600px) {
  .dl-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }
  .dl-game-card .gc-banner {
    height: 130px;
  }
  .dl-stats-bar {
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 24px;
  }
  .games-grid {
    gap: 8px;
  }
  .gc-body {
    padding: 8px 10px 12px;
  }
  .gc-name {
    font-size: 13px;
  }
  .gc-bonus {
    font-size: 10px;
  }
  .gc-cta {
    padding: 8px;
    font-size: 11px;
    gap: 4px;
  }
  .gc-cta ion-icon {
    font-size: 14px;
  }
  .pay-badge span {
    display: none;
  }
  .social-stat .num {
    font-size: 18px;
  }
  .ql {
    padding: 9px 16px;
    font-size: 13px;
  }
  .hero-urgency {
    font-size: 12px;
    gap: 6px;
  }
  .btn-hero-primary {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}
