:root {
  --bg: #0a0712;
  --bg-2: #110b1c;
  --surface: #17112599;
  --surface-solid: #181125;
  --border: #2a2140;
  --text: #ece8f5;
  --muted: #a99fc4;
  --accent: #be8bf5;
  --accent-2: #9d5cf0;
  --accent-soft: #be8bf51a;
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #160c24; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #15091f;
  box-shadow: 0 10px 30px -10px var(--accent-2);
}
.btn-primary:hover { box-shadow: 0 16px 40px -10px var(--accent-2); }
.btn-ghost {
  background: var(--surface); color: var(--text); border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--accent); color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* Promo banner */
.promo-banner {
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  color: #15091f; text-align: center; font-size: 14px; font-weight: 600;
  padding: 9px 16px;
}
.promo-banner strong { font-weight: 800; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,7,18,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; }
.brand-name { font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 26px; margin-left: 12px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; margin-left: auto; }

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

/* Hero */
.hero { position: relative; padding: 72px 0 24px; text-align: center; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(closest-side, var(--accent-2), transparent 70%);
  opacity: .28; filter: blur(40px); z-index: -1; pointer-events: none;
}
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(34px, 6vw, 62px); line-height: 1.05; font-weight: 900;
  letter-spacing: -.03em; max-width: 920px; margin: 0 auto 22px;
  cursor: default;
}
.accent {
  background: linear-gradient(120deg, var(--accent), #e3c2ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Per-letter animations */
.word { display: inline-block; white-space: nowrap; }
.ltr {
  display: inline-block;
  will-change: transform;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.ltr-accent {
  background: linear-gradient(120deg, var(--accent), #e3c2ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ltr:hover { animation-duration: .4s !important; }

@keyframes ltrFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes ltrBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-2px); }
}
@keyframes ltrWobble {
  0%, 100% { transform: rotate(0); }
  30% { transform: rotate(-2.5deg); }
  70% { transform: rotate(2.5deg); }
}
@keyframes ltrSwing {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(1.5px) translateY(-2.5px); }
}
@keyframes ltrPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes ltrTilt {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-3px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ltr { animation: none !important; }
}
.hero-sub { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 760px; margin: 0 auto;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 30px; font-weight: 800; }
.hero-stats span { font-size: 14px; color: var(--muted); }

/* Sections */
.section { padding: 72px 0; }
.section-tight { padding-top: 16px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 17px; }

/* Product grid */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--surface-solid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.product-thumb {
  height: 150px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 34px; letter-spacing: -.02em; color: #15091f;
  position: relative; overflow: hidden;
}
.product-thumb.has-img {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.product-thumb .game-tag {
  position: absolute; bottom: 10px; right: 10px; font-size: 11px; font-weight: 700;
  background: rgba(0,0,0,.45); color: #fff; padding: 4px 9px; border-radius: 999px;
  letter-spacing: .02em;
}
.product-title { font-size: 19px; font-weight: 700; }
.product-by { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.product-desc { font-size: 14px; color: var(--muted); flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.rating { font-size: 13px; color: var(--accent); font-weight: 600; }
.rating .count { color: var(--muted); font-weight: 400; }
.product-price { font-weight: 800; font-size: 17px; }
.bestseller-pill {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .03em;
  background: var(--accent); color: #15091f; padding: 3px 9px; border-radius: 999px;
  margin-bottom: 10px; align-self: flex-start;
}

/* Featured */
.featured-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.featured-media { position: relative; }
.featured-art {
  width: 100%; border-radius: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  object-fit: cover;
}
.featured-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--accent); color: #15091f; font-weight: 800; font-size: 13px;
  padding: 7px 14px; border-radius: 999px;
}
.featured-copy .eyebrow { margin-bottom: 16px; }
.featured-copy h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.featured-copy > p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.check-list { list-style: none; margin-bottom: 26px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

/* Live worldwide */
.worldwide {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  position: relative; overflow: hidden;
}
.section-head.light h2 { color: #15091f; }
.section-head.light p { color: #2a1450; opacity: .85; }
.map-wrap {
  position: relative; background: #fff; border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow); max-width: 1080px; margin: 0 auto;
}
.world-map { width: 100%; display: block; }
.map-counter {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  background: #eaf4ff; color: #1c3a5e; border: 1px solid #c7e0f7;
  font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 999px;
  white-space: nowrap;
}
.map-counter strong { color: #0c63d6; font-weight: 800; }

/* Accessibility */
.accessibility { background: var(--bg-2); border-block: 1px solid var(--border); }
.access-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.access-copy .eyebrow { margin-bottom: 16px; }
.access-copy h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.access-copy p { color: var(--muted); font-size: 17px; margin-bottom: 24px; }
.access-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.access-points li {
  background: var(--surface-solid); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; font-size: 14px; position: relative; padding-left: 38px;
}
.access-points li::before {
  content: "★"; position: absolute; left: 14px; color: var(--accent);
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--surface-solid); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
}
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #15091f; font-weight: 800; font-size: 20px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* Card rows (guides / blog) */
.card-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.info-card {
  background: var(--surface-solid); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s;
}
.info-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.info-card .info-cover { height: 140px; }
.info-card .info-body { padding: 18px 20px; }
.info-card .tag { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; }
.info-card h3 { font-size: 18px; margin: 8px 0; }
.info-card p { color: var(--muted); font-size: 14px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-inner {
  background: linear-gradient(135deg, #20133a, #2a1850);
  border: 1px solid var(--border); border-radius: 28px;
  padding: 56px 32px; box-shadow: var(--shadow);
}
.cta-inner h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -.02em; }
.cta-inner p { color: var(--muted); font-size: 18px; margin: 12px 0 28px; }
.cta-inner strong { color: var(--accent); }

/* Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 14px; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--border); margin-top: 40px; padding-top: 22px;
  color: var(--muted); font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-inner, .access-inner { grid-template-columns: 1fr; }
  .hero-stats, .stat-cards, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--surface-solid); border-bottom: 1px solid var(--border);
    padding: 18px 24px; gap: 16px; margin: 0;
  }
  .nav-toggle { display: flex; }
  .access-points { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
