:root {
  --v8f8-primary: #73c9ff;
  --v8f8-accent: #ffd166;
  --v8f8-bg: #101820;
  --v8f8-surface: #1b2732;
  --v8f8-surface-2: #243746;
  --v8f8-text: #f0f8ff;
  --v8f8-muted: #b9c8d4;
  --v8f8-border: rgba(240, 248, 255, .14);
  --v8f8-danger: #ff6b6b;
  --v8f8-radius: 1.4rem;
  --v8f8-shadow: 0 1rem 3rem rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 32rem;
  overflow-x: hidden;
  background: var(--v8f8-bg);
  color: var(--v8f8-text);
  font: 1.5rem/1.5rem Inter, Arial, sans-serif;
}
body.v8f8-menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.v8f8-skip {
  position: fixed;
  left: 1rem;
  top: -8rem;
  z-index: 10000;
  padding: 1.2rem 1.6rem;
  border-radius: .8rem;
  background: var(--v8f8-accent);
  color: #111;
  font-weight: 800;
}
.v8f8-skip:focus { top: 1rem; }
.v8f8-container { width: min(100% - 2.4rem, 118rem); margin-inline: auto; }
.v8f8-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 6.4rem;
  background: rgba(16, 24, 32, .96);
  border-bottom: 1px solid var(--v8f8-border);
  box-shadow: 0 .4rem 1.8rem rgba(0, 0, 0, .25);
  backdrop-filter: blur(1.2rem);
}
.v8f8-header-row { display: flex; align-items: center; min-height: 6.4rem; gap: .8rem; }
.v8f8-brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-right: auto;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.v8f8-brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--v8f8-primary), #2176ae);
  color: #08111a;
  font: 900 1.3rem/1 Arial, sans-serif;
  box-shadow: 0 0 0 .3rem rgba(115, 201, 255, .14);
}
.v8f8-header-actions { display: flex; align-items: center; gap: .6rem; }
.v8f8-btn {
  display: inline-flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 0;
  border-radius: 1rem;
  padding: .9rem 1.5rem;
  cursor: pointer;
  color: #09131c;
  background: var(--v8f8-primary);
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.v8f8-btn:hover, .v8f8-btn:focus-visible { transform: translateY(-.2rem); filter: brightness(1.1); box-shadow: 0 .6rem 1.8rem rgba(115, 201, 255, .25); }
.v8f8-btn:active { transform: scale(.96); }
.v8f8-btn-accent { background: var(--v8f8-accent); }
.v8f8-btn-outline { color: var(--v8f8-text); background: transparent; border: 1px solid var(--v8f8-primary); }
.v8f8-menu-toggle { width: 4.4rem; padding: 0; color: var(--v8f8-text); background: var(--v8f8-surface-2); }
.v8f8-desktop-nav { display: none; align-items: center; gap: .4rem; }
.v8f8-desktop-nav a { min-height: 4.4rem; display: flex; align-items: center; padding: 0 1rem; color: var(--v8f8-muted); text-decoration: none; font-weight: 750; }
.v8f8-desktop-nav a:hover { color: var(--v8f8-primary); }

.v8f8-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 8, 12, .72);
  transition: opacity .25s ease, visibility .25s ease;
}
.v8f8-mobile-menu.v8f8-is-open { visibility: visible; opacity: 1; }
.v8f8-menu-panel {
  width: min(86%, 36rem);
  height: 100%;
  margin-left: auto;
  padding: 2rem;
  background: var(--v8f8-surface);
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -1rem 0 3rem rgba(0, 0, 0, .3);
}
.v8f8-is-open .v8f8-menu-panel { transform: none; }
.v8f8-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.v8f8-menu-head strong { font-size: 2rem; }
.v8f8-icon-btn { display: grid; place-items: center; width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; color: var(--v8f8-text); background: var(--v8f8-surface-2); cursor: pointer; }
.v8f8-menu-links { display: grid; gap: .8rem; }
.v8f8-menu-links a, .v8f8-menu-links button { min-height: 4.8rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--v8f8-border); border-radius: 1rem; color: var(--v8f8-text); background: transparent; text-align: left; text-decoration: none; cursor: pointer; }
.v8f8-menu-links i, .v8f8-menu-links ion-icon { width: 2.4rem; color: var(--v8f8-primary); font-size: 2.2rem; }

.v8f8-main { padding-top: 6.4rem; }
.v8f8-hero { padding: 1.6rem 0 2.4rem; background: radial-gradient(circle at 50% 0, rgba(33, 118, 174, .35), transparent 55%); }
.v8f8-carousel { position: relative; overflow: hidden; aspect-ratio: 16/8.4; border-radius: var(--v8f8-radius); box-shadow: var(--v8f8-shadow); background: var(--v8f8-surface); }
.v8f8-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .55s ease; cursor: pointer; }
.v8f8-slide.v8f8-is-active { visibility: visible; opacity: 1; }
.v8f8-slide img { width: 100%; height: 100%; object-fit: cover; }
.v8f8-slide::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(7, 13, 19, .92)); }
.v8f8-slide-copy { position: absolute; z-index: 2; left: 1.6rem; right: 1.6rem; bottom: 1.5rem; }
.v8f8-slide-copy strong { display: block; font-size: clamp(1.8rem, 5vw, 3.2rem); line-height: 1.15; }
.v8f8-slide-copy span { color: var(--v8f8-accent); font-weight: 800; }
.v8f8-carousel-arrow { position: absolute; z-index: 3; top: 50%; width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; transform: translateY(-50%); color: #fff; background: rgba(0, 0, 0, .55); cursor: pointer; }
.v8f8-carousel-prev { left: .8rem; }
.v8f8-carousel-next { right: .8rem; }
.v8f8-dots { position: absolute; z-index: 4; right: 1.2rem; bottom: 1.2rem; display: flex; gap: .6rem; }
.v8f8-dot { width: 1rem; height: 1rem; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .5); cursor: pointer; }
.v8f8-dot.v8f8-is-active { width: 2.4rem; border-radius: 1rem; background: var(--v8f8-accent); }
.v8f8-hero-copy { padding: 2rem .4rem 0; text-align: center; }
.v8f8-eyebrow { margin: 0 0 .8rem; color: var(--v8f8-accent); font-size: 1.2rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.v8f8-hero-copy h1 { max-width: 78rem; margin: 0 auto 1.2rem; font-size: clamp(2.8rem, 8vw, 5.4rem); line-height: 1.08; }
.v8f8-hero-copy p { max-width: 70rem; margin: 0 auto 1.6rem; color: var(--v8f8-muted); font-size: 1.6rem; line-height: 2.4rem; }
.v8f8-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

.v8f8-section { padding: 3.6rem 0; scroll-margin-top: 7.2rem; }
.v8f8-section-alt { background: #15212b; }
.v8f8-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.v8f8-section-head h2 { margin: 0; font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.15; }
.v8f8-section-head p { margin: .6rem 0 0; color: var(--v8f8-muted); line-height: 2.2rem; }
.v8f8-count { flex: none; padding: .6rem 1rem; border-radius: 2rem; color: #08111a; background: var(--v8f8-primary); font-weight: 900; }
.v8f8-category { margin-bottom: 3.2rem; }
.v8f8-category:last-child { margin-bottom: 0; }
.v8f8-category-title { display: flex; align-items: center; gap: .9rem; margin: 0 0 1.2rem; font-size: 2rem; }
.v8f8-category-title i, .v8f8-category-title ion-icon, .v8f8-category-title .material-icons { color: var(--v8f8-accent); font-size: 2.4rem; }
.v8f8-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.v8f8-card { min-width: 0; overflow: hidden; border: 1px solid var(--v8f8-border); border-radius: 1.1rem; background: var(--v8f8-surface); box-shadow: 0 .5rem 1.4rem rgba(0, 0, 0, .16); transition: transform .2s ease, border-color .2s ease; }
.v8f8-card:hover { transform: translateY(-.3rem); border-color: var(--v8f8-primary); }
.v8f8-game-link { display: block; min-height: 4.4rem; color: var(--v8f8-text); text-decoration: none; cursor: pointer; }
.v8f8-game-link img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #0a1117; }
.v8f8-game-link span { display: grid; min-height: 4.6rem; place-items: center; padding: .6rem; font-size: 1.2rem; line-height: 1.4rem; text-align: center; font-weight: 750; }

.v8f8-content-grid { display: grid; gap: 1.2rem; }
.v8f8-panel { padding: 1.8rem; border: 1px solid var(--v8f8-border); border-radius: var(--v8f8-radius); background: var(--v8f8-surface); }
.v8f8-panel h3 { margin: 0 0 1rem; color: var(--v8f8-primary); font-size: 1.9rem; line-height: 1.25; }
.v8f8-panel p, .v8f8-panel li { color: var(--v8f8-muted); line-height: 2.3rem; }
.v8f8-panel p:last-child { margin-bottom: 0; }
.v8f8-panel ul, .v8f8-panel ol { margin: 0; padding-left: 2rem; }
.v8f8-text-link { border: 0; padding: 0; color: var(--v8f8-accent); background: transparent; cursor: pointer; font-weight: 900; text-decoration: underline; text-underline-offset: .3rem; }
.v8f8-feature-list { display: grid; gap: 1rem; }
.v8f8-feature { display: flex; gap: 1.2rem; padding: 1.4rem; border-radius: 1.2rem; background: var(--v8f8-surface-2); }
.v8f8-feature i, .v8f8-feature ion-icon, .v8f8-feature .material-icons { flex: none; color: var(--v8f8-accent); font-size: 2.6rem; }
.v8f8-feature strong { display: block; margin-bottom: .4rem; }
.v8f8-feature p { margin: 0; }
.v8f8-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.v8f8-metric { padding: 1.5rem; border-radius: 1.2rem; text-align: center; background: var(--v8f8-surface-2); }
.v8f8-metric strong { display: block; color: var(--v8f8-accent); font-size: 2.2rem; line-height: 1.2; }
.v8f8-metric span { color: var(--v8f8-muted); font-size: 1.2rem; }
.v8f8-notice { padding: 1.2rem 1.4rem; border-left: .4rem solid var(--v8f8-accent); border-radius: .6rem; color: var(--v8f8-muted); background: rgba(255, 209, 102, .08); line-height: 2.2rem; }
.v8f8-faq details { margin-bottom: .8rem; border: 1px solid var(--v8f8-border); border-radius: 1rem; background: var(--v8f8-surface); }
.v8f8-faq summary { min-height: 4.8rem; display: flex; align-items: center; padding: 1rem 1.4rem; cursor: pointer; color: var(--v8f8-text); font-weight: 850; }
.v8f8-faq p { margin: 0; padding: 0 1.4rem 1.4rem; color: var(--v8f8-muted); line-height: 2.3rem; }
.v8f8-cta { padding: 3rem 2rem; border-radius: 1.8rem; text-align: center; background: linear-gradient(135deg, #2176ae, #183c59); box-shadow: var(--v8f8-shadow); }
.v8f8-cta h2 { margin: 0 0 1rem; font-size: 2.8rem; line-height: 1.15; }
.v8f8-cta p { max-width: 62rem; margin: 0 auto 1.6rem; color: #e8f5ff; line-height: 2.3rem; }

.v8f8-footer { padding: 4rem 0 8.4rem; border-top: 1px solid var(--v8f8-border); background: #0a1117; }
.v8f8-footer-grid { display: grid; gap: 2rem; }
.v8f8-footer h2 { margin: 0 0 1rem; font-size: 2.2rem; }
.v8f8-footer p { max-width: 68rem; color: var(--v8f8-muted); line-height: 2.2rem; }
.v8f8-footer-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.v8f8-footer-links a, .v8f8-footer-links button { min-height: 4.4rem; display: inline-flex; align-items: center; padding: .8rem 1.2rem; border: 1px solid var(--v8f8-border); border-radius: .9rem; color: var(--v8f8-text); background: var(--v8f8-surface); text-decoration: none; cursor: pointer; font-weight: 750; }
.v8f8-copyright { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--v8f8-border); color: var(--v8f8-muted); font-size: 1.2rem; }

.v8f8-bottom-nav { position: fixed; z-index: 1000; left: .8rem; right: .8rem; bottom: .8rem; height: 6.4rem; display: flex; justify-content: space-around; border: 1px solid var(--v8f8-border); border-radius: 1.6rem; background: #1b2732; box-shadow: 0 -.6rem 2rem rgba(0, 0, 0, .35); }
.v8f8-bottom-item { min-width: 6rem; min-height: 6rem; display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; border: 0; color: var(--v8f8-muted); background: transparent; text-decoration: none; cursor: pointer; font-size: 1.05rem; font-weight: 750; transition: color .2s ease, transform .2s ease; }
.v8f8-bottom-item i, .v8f8-bottom-item ion-icon, .v8f8-bottom-item .material-icons { font-size: 2.4rem; line-height: 1; }
.v8f8-bottom-item.v8f8-current { color: var(--v8f8-accent); }
.v8f8-bottom-item:hover, .v8f8-bottom-item:focus-visible { color: var(--v8f8-primary); transform: translateY(-.3rem); }
.v8f8-bottom-item:active { transform: scale(.9); }

@media (max-width: 430px) {
  .v8f8-container { width: min(100% - 1.6rem, 43rem); }
  .v8f8-brand { font-size: 1.7rem; }
  .v8f8-brand-mark { width: 3rem; height: 3rem; }
  .v8f8-header-actions { gap: .4rem; }
  .v8f8-header-actions .v8f8-btn { min-height: 4.4rem; padding: .7rem .9rem; font-size: 1.2rem; }
  .v8f8-menu-toggle { width: 4.4rem !important; padding: 0 !important; }
  .v8f8-carousel { aspect-ratio: 16/9.5; }
  .v8f8-slide-copy span { display: none; }
  .v8f8-grid { gap: .8rem; }
  .v8f8-game-link span { font-size: 1.1rem; }
  .v8f8-section { padding: 3rem 0; }
}

@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}

@media (min-width: 640px) {
  .v8f8-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .v8f8-content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v8f8-metrics { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) {
  .v8f8-bottom-nav { display: none; }
  .v8f8-footer { padding-bottom: 4rem; }
  .v8f8-menu-toggle { display: none; }
  .v8f8-desktop-nav { display: flex; }
}

@media (min-width: 960px) {
  .v8f8-grid { grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .v8f8-footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
