/* GameX Static — vanilla CSS */
:root {
  --bg: #0b0b14;
  --card: #15151f;
  --fg: #fff;
  --muted: #fff;
  --neon: #c056ff;
  --electric: #4dabff;
  --success: #22c55e;
  --danger: #f0003e;
  --gradient-cta: linear-gradient(135deg, lab(52.9307% 89.7746 53.5689) 0%, rgb(240, 0, 62) 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --gradient-hero: linear-gradient(180deg, rgba(11,11,20,.35) 0%, rgba(11,11,20,.85) 60%, var(--bg) 100%);
  --shadow-card: 0 10px 30px rgba(0,0,0,.4);
  --shadow-glow-red: 0 0 30px rgba(233,69,96,.5);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--bg); color: var(--fg); font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width:100%; display:block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.xs { font-size: 11px; }
.success { color: var(--fg); font-weight: 700; }
.grad-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hidden { display: none !important; }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(2px); transform: scale(1.05); }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-inner { position: relative; max-width: 640px; margin: 0 auto; padding: 40px 16px 24px; text-align: center; }
.badge-limited {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--success); border: 1px solid rgba(34,197,94,.4); background: rgba(34,197,94,.1);
}
.hero-title { margin: 16px 0 0; font-size: clamp(32px, 6vw, 52px); line-height: 1.05; letter-spacing: -.02em; font-weight: 900; }
.hero-sub { margin: 16px auto 0; max-width: 460px; font-size: 16px; color: var(--muted); }
.hero-cta-stack { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.check-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient-cta); display: flex; align-items: center; justify-content: center; }
.bounce-down { color: var(--neon); display: flex; flex-direction: column; align-items: center; animation: bounceDown 1.6s infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.pulse-glow { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 20px rgba(233,69,96,.4); } 50% { box-shadow: 0 0 35px rgba(233,69,96,.8); } }

/* OFFER */
.offer { padding: 0 16px; margin-top: 0px; }
.offer-card { max-width: 440px; margin: 0 auto; background: #fff; color: #0f172a; border-radius: 24px; padding: 20px; box-shadow: 0 25px 50px rgba(0,0,0,.4); display: flex; gap: 12px; transition: transform .2s; }
.offer-card:hover { transform: scale(1.01); }
.offer-icon { flex: 0 0 48px; height: 48px; border-radius: 16px; background: var(--gradient-purple); color: white; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.offer-text { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.35; }
.badge-excl { display: inline-block; padding: 2px 8px; border-radius: 6px; background: var(--danger); color: white; font-size: 13px; font-weight: 800; letter-spacing: .04em; }

/* PRICING */
.pricing { max-width: 450px; margin: 0 auto; padding: 16px 16px 16px; text-align: center; }
.pricing-title { margin: 10; font-size: 24px; font-weight: 900; letter-spacing: -.01em; }
.price-big { margin: 16px 0 4px; font-size: 30px; font-weight: 900; }
.price-big .muted { font-size: 16px; font-weight: 600; }
.cta-big { display: block; width: 100%; margin-top: 24px; padding: 20px; border-radius: 18px; background: var(--gradient-cta); color: white; font-size: 20px; font-weight: 900; letter-spacing: .2em; }
.terms-link { display: block; margin: 16px auto 0; color: var(--muted); font-size: 13px; text-decoration: underline; text-underline-offset: 2px; }

/* SECTION HEADER */
.section { max-width: 1100px; margin: 0 auto; padding: 40px 16px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.section-eyebrow { font-size: 11px; letter-spacing: .25em; font-weight: 800; color: var(--neon); margin: 0; }
.section-title { margin: 4px 0 0; font-size: clamp(22px, 3vw, 30px); font-weight: 900; letter-spacing: -.01em; }
.section-rule { display: none; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0,255,209,.4), transparent); margin-bottom: 8px; }
@media (min-width: 640px) { .section-rule { display: block; } }

/* MOBILE ACCORDION */
.mobile-acc-header { display: block; }
.mobile-acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; }
.mobile-acc-btn .chev { transition: transform .3s; color: var(--neon); }
.mobile-acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mobile-acc-panel { overflow: hidden; transition: max-height .3s ease, opacity .3s ease; max-height: 0; opacity: 0; }
.mobile-acc-panel.open { max-height: 5000px; opacity: 1; }

@media (min-width: 768px) {
  .section-header { display: flex !important; }
  .mobile-acc-header { display: none; }
  .mobile-acc-panel { max-height: none !important; opacity: 1 !important; overflow: visible !important; }
}
@media (max-width: 767px) {
  .section-header { display: none; }
  .section { padding-top: 16px; padding-bottom: 16px; }
}

/* CARD GRIDS */
.grid { display: grid; gap: 16px; margin-top: 24px; }
.grid-news { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-news { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-news { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--card); border: 1px solid rgba(255,255,255,.05); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); transition: border-color .2s, transform .3s; }
.card:hover { border-color: rgba(0,255,209,.4); }
.card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-cat { position: absolute; top: 12px; left: 12px; padding: 2px 8px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: .08em; background: rgba(0,255,209,.9); color: #051; }
.card-body { padding: 16px; }
.card-title { margin: 0; font-size: 17px; font-weight: 800; line-height: 1.2; }
.card-excerpt { margin: 8px 0 0; font-size: 13px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; }
.read-more { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--electric); }
.read-more:hover { color: var(--neon); }

/* VIDEO LIST */
.video-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.video-item { display: flex; gap: 12px; padding: 8px; border-radius: 18px; background: var(--card); border: 1px solid rgba(255,255,255,.05); transition: border-color .2s; }
.video-item:hover { border-color: rgba(77,171,255,.4); }
.video-thumb { position: relative; flex: 0 0 144px; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; cursor: pointer; }
@media (min-width: 640px) { .video-thumb { flex-basis: 192px; } }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center; }
.play-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center; color: black; font-size: 14px; }
.video-duration { position: absolute; bottom: 6px; right: 6px; padding: 2px 6px; border-radius: 4px; background: rgba(0,0,0,.8); font-size: 10px; font-family: monospace; font-weight: 600; }
.video-meta { flex: 1; min-width: 0; padding: 4px 8px 4px 0; }
.video-title { margin: 0; font-size: 16px; font-weight: 800; line-height: 1.2; }
.video-stats { margin-top: 8px; display: flex; gap: 12px; font-size: 12px; color: var(--muted); }

/* REVIEWS */
.grid-reviews { grid-template-columns: 1fr 1fr; }
@media (min-width: 1024px) { .grid-reviews { grid-template-columns: repeat(3, 1fr); } }
.review { position: relative; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; }
.review img { width: 100%; height: 100%; object-fit: cover; }
.review-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.3) 60%, transparent); }
.review-score { position: absolute; top: 8px; right: 8px; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; color: white; border: 2px solid rgba(255,255,255,.3); background: var(--gradient-cta); }
.review-score.gold { background: var(--gradient-purple); }
.review-body { position: absolute; bottom: 0; inset-inline: 0; padding: 12px; }
.review-body h3 { margin: 0; font-size: 16px; font-weight: 800; }
.review-body p { margin: 4px 0 0; font-size: 11px; color: rgba(255,255,255,.7); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tags { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 4px; }
.tag { padding: 2px 6px; border-radius: 4px; background: rgba(255,255,255,.1); backdrop-filter: blur(4px); font-size: 10px; font-weight: 600; }

/* CATEGORIES */
.cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.cat-chip { padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: white; transition: transform .2s; }
.cat-chip:hover { transform: scale(1.05); }
.cat-adventure { background: linear-gradient(90deg, #34d399, #0d9488); }
.cat-arcade { background: linear-gradient(90deg, #fbbf24, #ea580c); }
.cat-casual { background: linear-gradient(90deg, #22d3ee, #2563eb); }
.cat-puzzle { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }

/* BENEFITS */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(4, 1fr); } }
.benefit { padding: 16px; border-radius: 18px; background: var(--card); border: 1px solid rgba(255,255,255,.05); transition: border-color .2s; }
.benefit:hover { border-color: rgba(0,255,209,.4); }
.benefit-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-purple); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 18px; }
.benefit h3 { margin: 0; font-size: 14px; font-weight: 800; line-height: 1.2; }
.benefit p { margin: 4px 0 0; font-size: 12px; color: var(--muted); line-height: 1.35; }

/* LOCKED */
.grid-locked { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-locked { grid-template-columns: 1fr 1fr; } }
.locked { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.05); }
.locked img { width: 100%; height: 100%; object-fit: cover; filter: blur(6px); transform: scale(1.1); }
.locked-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px; }
.locked-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--neon); font-size: 18px; }
.locked-overlay h3 { margin: 0; font-size: 17px; font-weight: 800; }
.locked-tag { margin-top: 8px; font-size: 10px; letter-spacing: .15em; color: var(--neon); font-weight: 800; }
.locked-foot { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }
.locked-cta { display: block; max-width: 360px; margin: 16px auto 0; padding: 16px; border-radius: 18px; background: var(--gradient-cta); color: white; font-weight: 900; letter-spacing: .2em; text-align: center; }

/* FOOTER */
.footer { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.05); background: rgba(0,0,0,.4); padding-bottom: 96px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 40px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.logo { color: white; }

/* STICKY CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; transform: translateY(100%); transition: transform .3s; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner { backdrop-filter: blur(10px); background: rgba(15,15,25,.85); border-top: 1px solid rgba(255,255,255,.1); padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 -8px 32px rgba(0,0,0,.5); }
.sticky-text { flex: 1; min-width: 0; }
.sticky-title { margin: 0; font-size: 14px; font-weight: 800; }
.sticky-sub { margin: 0; font-size: 12px; color: var(--muted); }
.cta-small { padding: 12px 20px; border-radius: 12px; background: var(--gradient-cta); color: white; font-weight: 900; font-size: 14px; letter-spacing: .08em; box-shadow: var(--shadow-glow-red); }

/* MODAL */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(4px); }
.modal-box { position: relative; width: 100%; max-width: 400px; background: var(--card); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 24px; box-shadow: 0 25px 50px rgba(0,0,0,.6); max-height: 90vh; overflow-y: auto; }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.modal-head h3 { margin: 0; font-size: 18px; font-weight: 800; }
.modal-close { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal-close:hover { background: rgba(255,255,255,.1); }
.modal-body p { margin: 0 0 8px; }
.modal-body .terms-list p { font-size: 12px; color: var(--muted); }
.modal-cta { display: block; width: 100%; margin-top: 16px; padding: 12px; border-radius: 12px; background: var(--gradient-cta); color: white; font-weight: 800; }
