:root {
  --v1fb-primary: #ff6347;
  --v1fb-primary-dark: #d9432e;
  --v1fb-secondary: #0000cd;
  --v1fb-sky: #bae1ff;
  --v1fb-bg: #0b0c22;
  --v1fb-surface: #16182d;
  --v1fb-surface-soft: #202342;
  --v1fb-text: #f4f8ff;
  --v1fb-muted: #add8e6;
  --v1fb-border: rgba(186, 225, 255, .18);
  --v1fb-shadow: 0 1.2rem 3rem rgba(0, 0, 0, .28);
  --v1fb-radius: 1.6rem;
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; scroll-padding-top: 8rem; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% 0, #20265b 0, var(--v1fb-bg) 38rem);
  color: var(--v1fb-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.v1fb-lock { overflow: hidden; }
a { color: inherit; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.v1fb-container { width: min(100% - 2.4rem, 118rem); margin-inline: auto; }
.v1fb-wrapper { padding-block: 2.4rem; }
.v1fb-main { padding-top: 7.6rem; }
.v1fb-section { padding-block: 2.8rem; }
.v1fb-section-alt { background: rgba(0, 0, 205, .08); border-block: .1rem solid var(--v1fb-border); }
.v1fb-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1.2rem; margin-bottom: 1.6rem; }
.v1fb-kicker { margin: 0 0 .8rem; color: var(--v1fb-primary); font-size: 1.2rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.v1fb-title { margin: 0; font-size: clamp(2.2rem, 7vw, 4rem); line-height: 1.14; }
.v1fb-subtitle { margin: .8rem 0 0; color: var(--v1fb-muted); line-height: 2.2rem; }
.v1fb-text-link { color: #ff8c79; font-weight: 800; text-underline-offset: .3rem; }

.v1fb-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: 6.8rem; border-bottom: .1rem solid var(--v1fb-border);
  background: rgba(11, 12, 34, .92); backdrop-filter: blur(1.6rem);
  transition: box-shadow .25s ease, background .25s ease;
}
.v1fb-header-scrolled { background: rgba(11, 12, 34, .98); box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .24); }
.v1fb-header-inner { height: 100%; display: flex; align-items: center; gap: 1rem; }
.v1fb-brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; min-width: 0; }
.v1fb-logo { width: 3.2rem; height: 3.2rem; border-radius: .9rem; object-fit: cover; }
.v1fb-brand-name { color: var(--v1fb-text); font-size: 1.8rem; font-weight: 950; letter-spacing: .02em; white-space: nowrap; }
.v1fb-desktop-nav { display: none; margin-left: auto; align-items: center; gap: .4rem; }
.v1fb-nav-link { padding: 1.2rem; color: var(--v1fb-muted); font-weight: 750; text-decoration: none; border-radius: 1rem; }
.v1fb-nav-link:hover { color: var(--v1fb-text); background: rgba(186, 225, 255, .08); }
.v1fb-header-actions { display: flex; gap: .6rem; margin-left: auto; }
.v1fb-btn {
  min-height: 4.4rem; border: 0; border-radius: 1.2rem; padding: 0 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  color: #fff; background: linear-gradient(135deg, var(--v1fb-primary), #ff8a55);
  font-weight: 900; text-decoration: none; cursor: pointer; box-shadow: 0 .7rem 1.8rem rgba(255, 99, 71, .22);
  transition: transform .2s ease, filter .2s ease;
}
.v1fb-btn:active { transform: scale(.96); }
.v1fb-btn:hover { filter: brightness(1.08); }
.v1fb-btn-outline { color: var(--v1fb-sky); background: transparent; border: .1rem solid rgba(186, 225, 255, .45); box-shadow: none; }
.v1fb-btn-compact { min-height: 4.2rem; padding-inline: 1.1rem; font-size: 1.3rem; }
.v1fb-menu-toggle { width: 4.4rem; min-width: 4.4rem; padding: 0; background: var(--v1fb-surface-soft); box-shadow: none; }

.v1fb-mobile-menu {
  position: fixed; inset: 0 0 0 auto; z-index: 9999; width: min(34rem, 88vw);
  padding: 2rem; background: #11132a; box-shadow: -1rem 0 4rem rgba(0, 0, 0, .45);
  transform: translateX(105%); visibility: hidden; transition: transform .28s ease, visibility .28s ease;
}
.v1fb-menu-open { transform: translateX(0); visibility: visible; }
.v1fb-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.v1fb-menu-title { font-size: 2rem; font-weight: 900; }
.v1fb-menu-close { width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; color: #fff; background: var(--v1fb-surface-soft); cursor: pointer; }
.v1fb-mobile-links { display: grid; gap: .8rem; }
.v1fb-mobile-link { min-height: 4.8rem; padding: 1.2rem; display: flex; align-items: center; gap: 1rem; border: .1rem solid var(--v1fb-border); border-radius: 1.2rem; color: var(--v1fb-text); text-decoration: none; }
.v1fb-mobile-link i, .v1fb-mobile-link ion-icon { color: var(--v1fb-primary); font-size: 2rem; }
.v1fb-menu-promo { margin-top: 1.6rem; width: 100%; }
.v1fb-menu-overlay { position: fixed; inset: 0; z-index: 9998; background: rgba(0, 0, 0, .66); opacity: 0; visibility: hidden; transition: .25s ease; }
.v1fb-overlay-open { opacity: 1; visibility: visible; }

.v1fb-hero { padding: 1.6rem 0 2.6rem; }
.v1fb-slider { position: relative; min-height: 30rem; overflow: hidden; border: .1rem solid var(--v1fb-border); border-radius: 2rem; background: var(--v1fb-surface); box-shadow: var(--v1fb-shadow); }
.v1fb-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .55s ease; }
.v1fb-slide-active { opacity: 1; pointer-events: auto; }
.v1fb-slide img { width: 100%; height: 100%; min-height: 30rem; object-fit: cover; }
.v1fb-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 7, 24, .94), rgba(6, 7, 24, .4) 70%, transparent); }
.v1fb-slide-content { position: absolute; z-index: 2; inset: auto 1.8rem 2.3rem; max-width: 55rem; }
.v1fb-slide-title { margin: 0; font-size: clamp(2.4rem, 8vw, 4.8rem); line-height: 1.08; }
.v1fb-slide-copy { margin: 1rem 0 1.5rem; color: var(--v1fb-sky); line-height: 2.2rem; }
.v1fb-slider-dots { position: absolute; z-index: 3; right: 1.5rem; bottom: 1.5rem; display: flex; gap: .6rem; }
.v1fb-slider-dot { width: 1rem; height: 1rem; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .45); cursor: pointer; }
.v1fb-dot-active { width: 2.4rem; border-radius: 1rem; background: var(--v1fb-primary); }

.v1fb-category-nav { display: flex; gap: .8rem; overflow-x: auto; padding: .4rem 0 1.2rem; scrollbar-width: none; }
.v1fb-category-nav::-webkit-scrollbar { display: none; }
.v1fb-category-link { flex: 0 0 auto; min-height: 4.4rem; padding: 0 1.4rem; display: inline-flex; align-items: center; gap: .7rem; border: .1rem solid var(--v1fb-border); border-radius: 2.4rem; color: var(--v1fb-muted); background: var(--v1fb-surface); font-weight: 800; text-decoration: none; }
.v1fb-category-link:hover { color: #fff; border-color: var(--v1fb-primary); }
.v1fb-game-section { padding: 2rem 0; }
.v1fb-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.v1fb-game-card { position: relative; overflow: hidden; border: .1rem solid var(--v1fb-border); border-radius: 1.3rem; background: var(--v1fb-surface); box-shadow: 0 .6rem 1.5rem rgba(0, 0, 0, .15); }
.v1fb-game-card button { width: 100%; padding: 0; border: 0; color: inherit; background: none; cursor: pointer; text-align: left; }
.v1fb-game-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--v1fb-surface-soft); transition: transform .25s ease; }
.v1fb-game-card:hover .v1fb-game-image { transform: scale(1.05); }
.v1fb-game-name { min-height: 5rem; padding: .9rem .8rem; display: flex; align-items: center; color: var(--v1fb-text); font-size: 1.2rem; font-weight: 800; line-height: 1.55rem; }

.v1fb-content-grid { display: grid; gap: 1.2rem; }
.v1fb-card { padding: 1.8rem; border: .1rem solid var(--v1fb-border); border-radius: var(--v1fb-radius); background: linear-gradient(145deg, rgba(32, 35, 66, .92), rgba(22, 24, 45, .92)); box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .16); }
.v1fb-card h3 { margin: 0 0 1rem; font-size: 1.8rem; line-height: 2.2rem; }
.v1fb-card p { margin: 0; color: var(--v1fb-muted); line-height: 2.25rem; }
.v1fb-icon-box { width: 4.8rem; height: 4.8rem; margin-bottom: 1.2rem; display: grid; place-items: center; border-radius: 1.4rem; color: #fff; background: linear-gradient(135deg, var(--v1fb-secondary), #5757ff); font-size: 2.4rem; }
.v1fb-steps { counter-reset: v1fb-step; display: grid; gap: 1rem; }
.v1fb-step { display: grid; grid-template-columns: 4.4rem 1fr; gap: 1.2rem; align-items: start; }
.v1fb-step::before { counter-increment: v1fb-step; content: counter(v1fb-step); width: 4.4rem; height: 4.4rem; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--v1fb-primary); font-weight: 950; }
.v1fb-step h3 { margin: .4rem 0 .6rem; }
.v1fb-step p { margin: 0; color: var(--v1fb-muted); line-height: 2.2rem; }
.v1fb-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.v1fb-stat { padding: 1.5rem; border-radius: 1.3rem; background: rgba(0, 0, 205, .16); border: .1rem solid rgba(87, 87, 255, .28); }
.v1fb-stat strong { display: block; color: #fff; font-size: 2rem; line-height: 2.4rem; }
.v1fb-stat span { color: var(--v1fb-muted); font-size: 1.2rem; line-height: 1.6rem; }
.v1fb-cta { padding: 2.4rem; text-align: center; border-radius: 2rem; background: linear-gradient(135deg, #0000a9, #2828e6 55%, #ff6347); box-shadow: var(--v1fb-shadow); }
.v1fb-cta h2 { margin: 0 0 1rem; font-size: 2.5rem; line-height: 3rem; }
.v1fb-cta p { margin: 0 auto 1.6rem; max-width: 65rem; color: #dceeff; line-height: 2.2rem; }
.v1fb-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.v1fb-review { display: flex; gap: 1.2rem; }
.v1fb-avatar { width: 4.5rem; height: 4.5rem; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--v1fb-primary); font-weight: 950; }
.v1fb-stars { color: #ffd55c; letter-spacing: .12em; }
.v1fb-faq details { border-bottom: .1rem solid var(--v1fb-border); }
.v1fb-faq summary { min-height: 5rem; padding: 1.4rem 0; color: #fff; font-weight: 850; cursor: pointer; }
.v1fb-faq p { padding: 0 0 1.6rem; margin: 0; color: var(--v1fb-muted); line-height: 2.25rem; }

.v1fb-footer { padding: 3.2rem 0 8.8rem; border-top: .1rem solid var(--v1fb-border); background: #08091b; }
.v1fb-footer-brand { margin-bottom: 1.6rem; }
.v1fb-footer-copy { max-width: 72rem; color: var(--v1fb-muted); line-height: 2.25rem; }
.v1fb-footer-links { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; margin: 1.8rem 0; }
.v1fb-footer-links a { color: var(--v1fb-sky); font-weight: 750; text-underline-offset: .3rem; }
.v1fb-footer-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.v1fb-copyright { margin-top: 2rem; padding-top: 1.6rem; border-top: .1rem solid var(--v1fb-border); color: #8ea8ba; font-size: 1.2rem; line-height: 1.8rem; }

.v1fb-bottom-nav {
  position: fixed; inset: auto 0 0; z-index: 1000; height: 6.2rem;
  display: flex; justify-content: space-around; align-items: stretch;
  border-top: .1rem solid rgba(186, 225, 255, .24); background: #101229;
  box-shadow: 0 -1rem 3rem rgba(0, 0, 0, .35);
}
.v1fb-bottom-item { min-width: 6rem; min-height: 6rem; flex: 1; border: 0; padding: .5rem .2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; color: #9bbccc; background: transparent; text-decoration: none; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.v1fb-bottom-item:active { transform: scale(.9); }
.v1fb-bottom-item:hover, .v1fb-bottom-active { color: var(--v1fb-primary); }
.v1fb-bottom-item i, .v1fb-bottom-item ion-icon, .v1fb-bottom-item .material-symbols-outlined { font-size: 2.3rem; line-height: 2.4rem; }
.v1fb-bottom-item .material-symbols-outlined { display: inline-block; inline-size: 2.3rem; max-width: 2.3rem; min-width: 0; overflow: hidden; white-space: nowrap; pointer-events: none; }
.v1fb-bottom-label { font-size: 1rem; font-weight: 800; line-height: 1.2rem; }
.v1fb-bottom-promo { position: relative; color: #fff; }
.v1fb-bottom-promo::before { content: ""; position: absolute; top: .3rem; width: 4.2rem; height: 4.2rem; z-index: -1; border-radius: 50%; background: linear-gradient(135deg, var(--v1fb-primary), #ff9a55); box-shadow: 0 .5rem 1.4rem rgba(255, 99, 71, .35); }

@media (min-width: 540px) {
  .v1fb-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v1fb-content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v1fb-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) {
  .v1fb-main { padding-top: 8.2rem; }
  .v1fb-header { height: 7.4rem; }
  .v1fb-desktop-nav { display: flex; }
  .v1fb-menu-toggle { display: none; }
  .v1fb-slider, .v1fb-slide img { min-height: 44rem; }
  .v1fb-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.4rem; }
  .v1fb-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v1fb-bottom-nav { display: none; }
  .v1fb-footer { padding-bottom: 3.2rem; }
}

@media (max-width: 768px) {
  main, .v1fb-main { padding-bottom: 8rem; }
  .v1fb-header-actions .v1fb-btn span { display: none; }
  .v1fb-header-actions .v1fb-btn { width: 4.4rem; padding: 0; }
  .v1fb-brand-name { font-size: 1.6rem; }
}

@media (max-width: 430px) {
  .v1fb-container { width: min(100% - 2rem, 118rem); }
  .v1fb-header-inner { gap: .6rem; }
  .v1fb-header-actions { gap: .4rem; }
  .v1fb-slider, .v1fb-slide img { min-height: 28rem; }
  .v1fb-slide-content { inset: auto 1.4rem 1.8rem; }
  .v1fb-section { padding-block: 2.4rem; }
  .v1fb-grid { gap: .8rem; }
}

@media (max-width: 359px) {
  .v1fb-container { width: min(100% - 1.6rem, 118rem); }
  .v1fb-grid { gap: .7rem; }
  .v1fb-game-name { padding: .7rem .6rem; font-size: 1.1rem; }
  .v1fb-brand-name { display: none; }
}

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