@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg: #050506;
  --bg-2: #0b0b0e;
  --card: #101014;
  --card-2: #16161c;
  --border: #24242c;
  --text: #f2f2f5;
  --muted: #9a9aa5;
  --red: #ff2233;
  --red-2: #ff5563;
  --red-glow: rgba(255, 34, 51, 0.45);
  --radius: 16px;
  --maxw: 1160px;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', var(--font-sans);
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
  animation: pageIn .6s ease both;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  letter-spacing: -0.02em;
}

p, li, .nav-links a, .hero-sub, .section-head p, .plan-desc, .feature-card p, .faq-item p, .product-short {
  font-weight: 500;
  line-height: 1.75;
}
@keyframes pageIn { from { opacity: 0; } }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--red); }

/* Background */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,34,51,0.06) 0%, rgba(255,34,51,0.02) 18%, rgba(0,0,0,0) 48%),
    #050506;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 40% at 50% 0%, #000 10%, transparent 70%);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .3s ease, border-color .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary {
  background: var(--red);
  color: #fff; box-shadow: 0 4px 14px rgba(255,34,51,0.22);
}
.btn-primary:hover { background: #ff3949; box-shadow: 0 6px 20px rgba(255,34,51,0.34); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--red); color: var(--red-2); box-shadow: 0 0 24px rgba(255,34,51,0.18); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--red); }
.btn-outline:hover { background: rgba(255,34,51,0.1); box-shadow: 0 0 26px rgba(255,34,51,0.25); transform: translateY(-2px); }
.btn-nav { padding: 9px 18px; background: var(--red); color:#fff; box-shadow: 0 4px 14px rgba(255,34,51,0.22); }
.btn-nav:hover { background: #ff3949; box-shadow: 0 6px 20px rgba(255,34,51,0.34); }

/* Top bar */
.topbar {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 9px 16px; text-decoration: none;
  background: #050506;
  border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: 13.5px; font-weight: 600; letter-spacing: .2px;
  transition: color .3s ease, background .3s ease;
}
.topbar:hover { color: var(--text); }
.topbar svg { color: #5865F2; }
.topbar svg { flex-shrink: 0; }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,5,6,0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.navbar.scrolled { border-bottom-color: var(--border); background: rgba(5,5,6,0.9); }
.nav-inner { display: flex; align-items: center; height: 68px; position: relative; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; text-decoration: none; color: var(--text); flex-shrink: 0; z-index: 60; gap: 10px; }
.logo-img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.logo-text { font-family: var(--font-sans); font-weight: 800; font-size: 20px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 700; transition: color .3s ease, background .3s ease, transform .3s cubic-bezier(.2,.7,.2,1); padding: 8px 10px; border-radius: 8px; }
.nav-links a.nav-tab:hover { color: var(--text); background: rgba(255,255,255,0.02); }
.nav-links a.nav-tab { position: relative; }
.nav-links a.nav-tab::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: -8px; width: 0; height: 3px; background: linear-gradient(90deg,var(--red),var(--red-2)); border-radius: 3px; transition: width .25s ease; }
.nav-links a.nav-tab:hover::after { width: 60%; }
.nav-links a.nav-tab.active { color: var(--text); font-weight: 800; }
.nav-links a.nav-tab.active::after { width: 60%; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn-nav { color: #fff; }
.nav-links a.active { color: var(--text); }
.nav-cart { position: relative; }
.cart-badge { display: none; position: absolute; top: -4px; right: -16px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 100px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; align-items: center; justify-content: center; pointer-events: none; }
.cart-badge.show { display: flex; }
.btn-nav-outline {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px !important; border-radius: 10px;
  border: 1px solid var(--red); color: var(--red-2) !important; font-weight: 700;
  transition: background .3s ease, color .3s ease, box-shadow .35s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}
.btn-nav-outline:hover { background: var(--red); color: #fff !important; box-shadow: 0 0 26px rgba(255,34,51,0.4); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: .3s; }

/* Hero */
.hero { padding: 90px 0 80px; text-align: left; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.hero-inner > * { opacity: 0; transform: translateY(12px); animation: heroIn .45s ease-out forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .1s; }
.hero-inner > *:nth-child(3) { animation-delay: .15s; }
.hero-inner > *:nth-child(4) { animation-delay: .2s; }
.hero-inner > *:nth-child(5) { animation-delay: .25s; }
.hero-inner > *:nth-child(6) { animation-delay: .3s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * { opacity: 1; transform: none; animation: none; }
}
.hero-eyebrow {
  display: inline-block; margin-bottom: 20px; padding: 8px 18px; border-radius: 100px;
  background: rgba(255,34,51,0.08); border: 1px solid rgba(255,34,51,0.28);
  color: var(--red-2); font-weight: 600; font-size: 14px; letter-spacing: .3px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px 7px 13px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: rgba(255,34,51,0.1); border: 1px solid rgba(255,34,51,0.35); color: var(--red-2);
  margin-bottom: 26px;
}
.badge svg { color: var(--red); }
.hero-logo { display: none; }
.hero-title {
  font-family: var(--font-sans); font-weight: 800; font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 20px;
}
.hero-sub { max-width: 620px; color: #cfcfd8; font-size: 18px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--card); margin-bottom: 16px;
}
.hero-rating .hr-stars { color: #f5c542; letter-spacing: 2px; font-size: 15px; }
.hero-rating strong { font-weight: 800; font-size: 15px; }
.hero-rating .hr-sub { color: var(--muted); font-size: 13.5px; }
.hero-pay {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--border); background: var(--card);
}
.hero-pay .pay-lbl { font-weight: 700; font-size: 13.5px; }
.hero-pay .pay-chip { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.hero-pay .pay-chip svg { color: var(--red); }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 600; }
.trust-badge svg { color: #4ddb8f; }
.hero-stats { display: flex; gap: 56px; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-value { display: inline-flex; align-items: baseline; white-space: nowrap; }
.stat-num, .stat-suffix {
  font-family: var(--font-sans); font-weight: 700; font-size: 40px; color: var(--red);
  line-height: 1;
}
.stat-label { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* Sections */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  font-weight: 700; color: var(--red); margin-bottom: 14px;
}
.section-head h2 { font-family: var(--font-sans); font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.5px; }
.section-head h2 .accent { color: var(--text); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center; min-height: 168px;
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .4s ease;
}
.feature-card:hover {
  transform: translateY(-8px); border-color: rgba(255,34,51,0.5);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255,34,51,0.18);
}
.feature-icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: rgba(255,34,51,0.08);
  border: 1px solid rgba(255,34,51,0.25); color: var(--red);
  transition: box-shadow .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.feature-card:hover .feature-icon { box-shadow: 0 0 30px rgba(255,34,51,0.4); transform: scale(1.08); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 17px; font-weight: 700; }

/* Games */
.games { padding-top: 20px; }
.games-row { display: flex; gap: 34px; flex-wrap: wrap; justify-content: center; }
.game-tile {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(12px);
  animation: gameIn .45s ease-out forwards;
}
.game-tile:nth-child(1) { animation-delay: .04s; }
.game-tile:nth-child(2) { animation-delay: .08s; }
.game-tile:nth-child(3) { animation-delay: .12s; }
.game-tile:nth-child(4) { animation-delay: .16s; }
@keyframes gameIn {
  to { opacity: 1; transform: none; }
}
.game-badge {
  width: 88px; height: 88px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .35s ease;
}
.game-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-tile:hover .game-badge {
  transform: translateY(-8px) scale(1.05) rotate(-1.5deg);
  border-color: var(--gc, var(--red));
  box-shadow: 0 18px 40px color-mix(in srgb, var(--gc, var(--red)) 40%, transparent);
}
.game-cap {
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  letter-spacing: .4px; color: var(--muted); transition: color .25s;
}
.game-tile:hover .game-cap { color: #fff; }

.product-games { justify-content: flex-start; gap: 18px; margin-bottom: 26px; }
.product-games .game-tile { flex-direction: row; gap: 8px; animation: none; opacity: 1; transform: none; }
.product-games .game-badge { width: 44px; height: 44px; border-radius: 11px; }
.product-games .game-cap { font-size: 14px; }
@media (prefers-reduced-motion: reduce) {
  .game-tile { animation: none; opacity: 1; transform: none; }
}

/* Video section */
.video-frame {
  position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,34,51,0.15),
              0 0 60px rgba(255,34,51,0.12);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.video-frame:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,34,51,0.25),
              0 0 80px rgba(255,34,51,0.18);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Reviews */
.reviews-summary { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 18px; }
.rs-stars { color: var(--red); font-size: 22px; letter-spacing: 3px; }
.rs-meta { color: var(--muted); font-size: 14px; }
.rs-meta span { color: var(--text); font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border); border-radius: 14px; padding: 22px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .4s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.review-card.featured { border-color: rgba(255,34,51,0.5); }
.review-stars { color: var(--red); letter-spacing: 2px; font-size: 15px; margin-bottom: 10px; }
.review-stars .off { color: var(--border); }
.review-text { color: #d6d6dc; font-size: 14.5px; margin-bottom: 14px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.review-name { font-weight: 600; }
.review-plan { color: var(--muted); }
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 20px; }
.code-row { display: flex; gap: 8px; }
.code-row input { flex: 1; }
.code-row .btn { padding: 12px 16px; }
.code-status { font-size: 13px; margin: 8px 0 0; min-height: 16px; }
.code-status.ok { color: #4ddb8f; }
.code-status.err { color: var(--red-2); }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 860px; margin: 0 auto; align-items: start;
}
.plan-card {
  position: relative; background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border); border-radius: 20px; padding: 34px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .35s ease;
}
.plan-card.featured {
  border-color: rgba(245,197,66,0.55);
  background: linear-gradient(180deg, rgba(245,197,66,0.06), var(--bg-2));
  box-shadow: 0 0 0 1px rgba(245,197,66,0.18), 0 22px 60px rgba(245,197,66,0.12);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.plan-card.featured:hover { box-shadow: 0 0 0 1px rgba(245,197,66,0.3), 0 26px 64px rgba(245,197,66,0.2); }
.plan-medal-lg {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 9px 20px; border-radius: 100px; font-weight: 800; font-size: 14px; letter-spacing: .5px;
  color: #3a2a00; background: linear-gradient(135deg, #ffe08a, #f5c542);
  box-shadow: 0 6px 22px rgba(245,197,66,0.5);
}
.plan-medal-lg svg { color: #3a2a00; }
.plan-head h3 { font-family: var(--font-sans); font-size: 24px; font-weight: 800; }
.plan-tag { color: var(--muted); font-size: 14px; margin-top: 4px; }
.plan-price { display: flex; align-items: flex-start; gap: 2px; margin: 22px 0 4px; }
.plan-price .currency { font-size: 24px; font-weight: 700; margin-top: 6px; }
.plan-price .amount { font-family: var(--font-sans); font-size: 58px; font-weight: 900; line-height: 1; }
.plan-price .cents { font-size: 24px; font-weight: 700; margin-top: 6px; }
.plan-period { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  position: relative; padding: 9px 0 9px 28px; font-size: 14.5px; color: #d6d6dc;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li::before {
  content: "✓"; position: absolute; left: 0; top: 9px; color: var(--red);
  font-weight: 700; font-size: 14px;
}
.plan-features li strong { color: #fff; }
.plan-btn { width: 100%; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .35s ease, box-shadow .35s ease, transform .35s cubic-bezier(.2,.7,.2,1); }
.faq-item.open { border-color: rgba(255,34,51,0.5); box-shadow: 0 8px 30px rgba(255,34,51,0.08); }
.faq-item:hover { transform: translateY(-2px); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 16px; font-weight: 600; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit; transition: color .3s ease;
}
.faq-q:hover { color: var(--red-2); }
.faq-icon { color: var(--red); font-size: 22px; font-weight: 400; transition: transform .4s cubic-bezier(.16,1,.3,1); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.16,1,.3,1); }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* Footer */
.footer { padding: 56px 0 30px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-text { font-size: 20px; }
.footer-brand p { color: var(--muted); margin-top: 10px; font-size: 15px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color .3s ease, transform .3s ease; }
.footer-links a:hover { color: var(--red-2); transform: translateY(-1px); }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-bottom p { color: #6a6a75; font-size: 13px; }

/* Checkout modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  position: relative; width: 100%; max-width: 440px;
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid rgba(255,34,51,0.4); border-radius: 18px; padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6); animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.modal h3 { font-family: var(--font-sans); font-size: 24px; font-weight: 800; margin-top: 8px; }
.modal-plan { margin: 6px 0 22px; font-size: 15px; }
.modal-plan strong { color: var(--red-2); }
.modal label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--muted); }
.modal input {
  width: 100%; padding: 13px 15px; border-radius: 10px; font-size: 15px; font-family: inherit;
  background: var(--bg); border: 1px solid var(--border); color: var(--text); outline: none;
  transition: border-color .2s;
}
.modal input:focus { border-color: var(--red); }
.modal-note { font-size: 13px; color: var(--muted); margin: 10px 0 20px; }
.modal-error { color: var(--red-2); font-size: 14px; margin-top: 12px; min-height: 18px; text-align: center; }
.modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: var(--muted); font-size: 28px; line-height: 1; cursor: pointer; transition: color .2s;
}
.modal-close:hover { color: var(--text); }

/* Cart */
.cart-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(255,34,51,0.3); transition: transform .2s;
}
.cart-fab:hover { transform: translateY(-3px) scale(1.05); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: 100px; background: #fff; color: var(--red); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg);
}
.cart-overlay { position: fixed; inset: 0; z-index: 95; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .25s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 96; width: 400px; max-width: 90vw;
  background: #0c0c10; border-left: 1px solid var(--border); transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.cart-head h3 { font-family: var(--font-sans); font-size: 20px; font-weight: 700; }
.cart-x { background: none; border: none; color: var(--muted); font-size: 30px; line-height: 1; cursor: pointer; }
.cart-x:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: var(--muted); padding: 40px 0; }
.cart-empty a { color: var(--red-2); }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); gap: 12px; }
.ci-info { display: flex; flex-direction: column; }
.ci-name { font-weight: 600; }
.ci-sub { color: var(--muted); font-size: 12.5px; }
.ci-right { display: flex; align-items: center; gap: 12px; }
.ci-qty { display: flex; align-items: center; gap: 8px; }
.ci-qty button { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--border); background: var(--bg); color: var(--text); cursor: pointer; font-size: 15px; }
.ci-qty button:hover { border-color: var(--red); }
.ci-price { font-weight: 600; min-width: 60px; text-align: right; font-size: 14px; }
.ci-rm { background: none; border: none; color: var(--muted); font-size: 20px; cursor: pointer; }
.ci-rm:hover { color: var(--red-2); }
.cart-foot { padding: 18px 24px 24px; border-top: 1px solid var(--border); }
.cart-field { margin-bottom: 10px; }
.cart-field input { width: 100%; padding: 12px 14px; border-radius: 10px; background: var(--bg); border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 14px; outline: none; }
.cart-field input:focus { border-color: var(--red); }
.cart-field.code { display: flex; gap: 8px; }
.cart-field.code button { padding: 0 16px; border-radius: 10px; border: 1px solid var(--border); background: transparent; color: var(--text); cursor: pointer; font-size: 14px; white-space: nowrap; }
.cart-field.code button:hover { border-color: var(--red); color: var(--red-2); }
.cart-codemsg { font-size: 13px; min-height: 16px; margin: 2px 0 8px; }
.cart-codemsg.ok { color: #4ddb8f; } .cart-codemsg.err { color: var(--red-2); }
.pay-methods { margin: 4px 0 6px; }
.pay-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.pay-opts { display: flex; gap: 8px; }
.pay-opt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg); color: var(--muted); cursor: pointer; font-size: 13.5px; font-weight: 600; font-family: inherit; transition: .2s; }
.pay-opt:hover { border-color: rgba(255,34,51,0.4); color: var(--text); }
.pay-opt.active { border-color: var(--red); color: var(--text); background: rgba(255,34,51,0.07); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin: 14px 0 16px; font-size: 15px; color: var(--muted); }
.cart-total strong { font-family: var(--font-sans); font-size: 24px; color: var(--text); }
.cart-total .was { text-decoration: line-through; color: var(--muted); font-size: 16px; margin-right: 6px; }
.cart-err { color: var(--red-2); font-size: 13px; min-height: 16px; margin-top: 8px; }
.cart-fulllink { display: block; text-align: center; color: var(--muted); font-size: 13px; margin-top: 12px; text-decoration: none; }
.cart-fulllink:hover { color: var(--red-2); }
.cart-secure { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 12px; }

/* Product page */
.product { padding: 48px 0 90px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-slider {
  position: sticky; top: 90px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: #0a0a0d; touch-action: pan-y;
}
.pv-track { display: flex; will-change: transform; }
.pv-slide {
  flex: 0 0 100%; aspect-ratio: 16 / 9;
  opacity: .28; transform: scale(.86);
  transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.pv-slide.active { opacity: 1; transform: scale(1); }

.pv-banner { display: block; width: 100%; height: 100%; object-fit: contain; background: #0a0a0d; }
.pv-video { position: relative; width: 100%; height: 100%; background: #000; }
.product-slider { cursor: grab; }
.product-slider.dragging { cursor: grabbing; }
.product-slider.dragging .pv-slide { transition: none; }
@media (prefers-reduced-motion: reduce) {
  .pv-slide { transition: none; transform: none; }
}
.pv-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pv-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--border); background: rgba(5,5,6,0.7);
  color: #fff; font-size: 24px; line-height: 1; cursor: pointer; backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s ease, box-shadow .35s ease, transform .3s cubic-bezier(.2,.7,.2,1), background .3s ease;
}
.pv-arrow:hover { border-color: var(--red); box-shadow: 0 0 24px var(--red-glow); background: rgba(255,34,51,0.1); }
.pv-arrow.prev { left: 12px; } .pv-arrow.next { right: 12px; }
.pv-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.pv-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; transition: width .4s cubic-bezier(.16,1,.3,1), background .3s ease, border-radius .3s ease; }
.pv-dots button.active { background: var(--red); width: 22px; border-radius: 100px; }
.product-crumbs { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.product-crumbs a { color: var(--muted); text-decoration: none; }
.product-crumbs a:hover { color: var(--text); }
.product-info h1 { font-family: var(--font-sans); font-size: clamp(28px,4vw,40px); font-weight: 800; letter-spacing: -0.5px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin: 12px 0 18px; color: var(--muted); font-size: 14px; }
.product-rating .stars { color: var(--red); letter-spacing: 2px; font-size: 17px; }
.product-short { color: #cfcfd6; font-size: 17px; margin-bottom: 26px; }
.variant-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 14px; }
.variants { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.variant {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--card); cursor: pointer; transition: border-color .3s ease, background .3s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; text-align: left; width: 100%;
}
.variant:hover { border-color: rgba(255,34,51,0.4); transform: translateY(-2px); }
.variant.active { border-color: var(--red); background: rgba(255,34,51,0.06); box-shadow: 0 0 24px rgba(255,34,51,0.12); }
.variant .v-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.variant .v-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; position: relative; }
.variant.active .v-radio { border-color: var(--red); }
.variant.active .v-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--red); }
.variant .v-name { display: block; color: #fff; font-weight: 700; font-size: 16px; }
.variant .v-sub { display: block; color: var(--muted); font-size: 13px; }
.variant .v-price { flex-shrink: 0; font-family: var(--font-sans); font-weight: 800; font-size: 22px; color: #fff; }
.product-buy { display: flex; gap: 12px; flex-wrap: wrap; }
.product-buy .btn { flex: 1; min-width: 150px; }
.product-info .trust-badges { justify-content: flex-start; margin-top: 16px; }
.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-opt {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 24px 22px; border-radius: 16px; border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.plan-opt:hover { transform: translateY(-4px); border-color: rgba(255,34,51,0.4); box-shadow: 0 14px 34px rgba(0,0,0,0.45); }
.plan-opt-name { display: block; font-family: var(--font-sans); font-weight: 800; font-size: 20px; }
.plan-opt-sub { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.plan-opt-price { font-family: var(--font-sans); font-weight: 800; font-size: 34px; letter-spacing: -0.5px; }
.plan-opt.gold {
  border-color: rgba(245,197,66,0.55);
  background: linear-gradient(180deg, rgba(245,197,66,0.06), var(--bg-2));
  box-shadow: 0 0 0 1px rgba(245,197,66,0.15), 0 16px 40px rgba(245,197,66,0.08);
}
.plan-opt.gold:hover { border-color: #f5c542; box-shadow: 0 16px 44px rgba(245,197,66,0.2); }
.plan-medal {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: #3a2a00; background: linear-gradient(135deg, #ffe08a, #f5c542);
  box-shadow: 0 4px 14px rgba(245,197,66,0.4);
}
.plan-medal svg { color: #3a2a00; }

@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr; gap: 28px; }

  .product-slider { position: relative; top: auto; }
}
@media (max-width: 420px) {
  .plan-cards { grid-template-columns: 1fr; }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .4s ease-out, transform .4s ease-out; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { max-width: 100%; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 880px) {
  .nav-inner { height: 60px; padding: 0 18px; }
  .nav-toggle { display: flex; margin-left: auto; padding: 8px; margin-right: -8px; }
  .nav-toggle span { display: block; transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* dropdown */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; transform: none;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 18px 14px;
    
    background: #0a0a0d;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    opacity: 0; visibility: hidden; translate: 0 -10px;
    transition: opacity .25s ease, translate .3s cubic-bezier(.2,.7,.2,1), visibility .25s;
  }
  .nav-links.open { opacity: 1; visibility: visible; translate: 0 0; }
  .nav-links a {
    padding: 15px 4px; border-radius: 0; font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active { color: var(--red-2); }
  .nav-links a.btn-nav { text-align: center; margin: 12px 0; border-bottom: none; border-radius: 10px; }

  .nav-cart { display: flex; align-items: center; gap: 10px; }
  .cart-badge { position: static; top: auto; right: auto; }
}



@media (max-width: 760px) {
  body::after { display: none; }
  .navbar { backdrop-filter: none; background: rgba(5,5,6,0.94); }
  .navbar.scrolled { background: #06060a; }
  .reveal { transform: none; transition: opacity .35s ease-out; }

  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 48px 0 56px; text-align: center; }
  .hero-inner { align-items: center; }
  .hero-title { margin-bottom: 16px; }
  .hero-sub { font-size: 16.5px; margin-bottom: 24px; }
  .hero-cta { width: 100%; gap: 10px; margin-bottom: 24px; }
  .hero-cta .btn { flex: 1 1 100%; padding: 15px 22px; }
  .hero-stats { gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 34px; }
  .plan-card { padding: 28px 22px; }
  .footer-inner { flex-direction: column; gap: 22px; margin-bottom: 28px; }
  .footer-links { gap: 18px 22px; }
}

@media (max-width: 560px) {
  .topbar { padding: 9px 14px; font-size: 12.5px; }
  .topbar .tb-long { display: none; }


  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { min-height: 0; padding: 20px 12px; gap: 12px; border-radius: 14px; }
  .feature-icon { width: 46px; height: 46px; border-radius: 12px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card h3 { font-size: 13.5px; line-height: 1.35; }

 
  .games .games-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .game-badge { width: 72px; height: 72px; border-radius: 16px; }
  .game-cap { font-size: 13px; }

  .hero-rating { padding: 8px 14px; gap: 7px; }
  .hero-pay { gap: 10px 12px; padding: 10px 16px; }
  .hero-stats { gap: 24px; }
  .stat-num, .stat-suffix { font-size: 32px; }

  .faq-q { padding: 16px 16px; font-size: 15px; gap: 12px; }
  .faq-a p { padding: 0 16px 16px; font-size: 14.5px; }

  .video-frame { border-radius: 14px; }
  .plan-price .amount { font-size: 50px; }

  .product { padding: 28px 0 64px; }
  .product-buy .btn { flex: 1 1 100%; }
  .cart-drawer { width: 100%; max-width: 100%; }
  .modal { padding: 26px 20px; }
}


@media (hover: none) {
  .btn:hover, .feature-card:hover, .plan-card:hover, .review-card:hover,
  .faq-item:hover, .video-frame:hover, .variant:hover, .plan-opt:hover,
  .game-tile:hover .game-badge { transform: none; }
}
