:root {
  font-size: 62.5%;
  --vef8-bg: #0f0f23;
  --vef8-surface: #181832;
  --vef8-surface-2: #242447;
  --vef8-primary: #ff69b4;
  --vef8-primary-soft: #ffb6c1;
  --vef8-accent: #ffb347;
  --vef8-highlight: #ffffba;
  --vef8-text: #f8f8ff;
  --vef8-muted: #bbbbbb;
  --vef8-border: rgba(255, 182, 193, 0.22);
  --vef8-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.34);
}

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

.vef8-container { width: min(100% - 2.4rem, 118rem); margin-inline: auto; }
.vef8-wrapper { padding-block: 3.8rem; }
.vef8-section { scroll-margin-top: 8.4rem; }
.vef8-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--vef8-accent);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vef8-section-title { margin: 0; font-size: clamp(2.3rem, 7vw, 3.6rem); line-height: 1.15; }
.vef8-section-copy { max-width: 72rem; margin: 1rem 0 2rem; color: var(--vef8-muted); line-height: 2.3rem; }
.vef8-text-link { color: var(--vef8-highlight); font-weight: 800; text-decoration-thickness: 0.2rem; }

.vef8-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 6.8rem;
  border-bottom: 0.1rem solid var(--vef8-border);
  background: rgba(15, 15, 35, 0.94);
  backdrop-filter: blur(1.6rem);
}
.vef8-header-inner { min-height: 6.8rem; display: flex; align-items: center; gap: 0.8rem; }
.vef8-brand { display: inline-flex; align-items: center; gap: 0.8rem; min-width: 0; text-decoration: none; }
.vef8-logo { width: 3.2rem; height: 3.2rem; border-radius: 0.9rem; object-fit: cover; }
.vef8-brand-name { color: var(--vef8-text); font-size: 1.8rem; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.vef8-desktop-nav { display: none; margin-left: auto; align-items: center; gap: 0.3rem; }
.vef8-desktop-nav a { padding: 1.2rem; color: var(--vef8-muted); font-weight: 700; text-decoration: none; }
.vef8-desktop-nav a:hover { color: var(--vef8-primary); }
.vef8-auth { margin-left: auto; display: flex; gap: 0.6rem; }
.vef8-btn {
  min-height: 4.4rem;
  padding: 0.9rem 1.3rem;
  border: 0.1rem solid transparent;
  border-radius: 1.2rem;
  color: #0f0f23;
  background: linear-gradient(135deg, var(--vef8-primary), var(--vef8-accent));
  box-shadow: 0 0.5rem 1.5rem rgba(255, 105, 180, 0.24);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.vef8-btn:hover, .vef8-btn:focus-visible { filter: brightness(1.1); transform: translateY(-0.2rem); }
.vef8-btn-secondary { color: var(--vef8-text); border-color: var(--vef8-primary); background: transparent; box-shadow: none; }
.vef8-btn-wide { width: 100%; justify-content: center; }
.vef8-menu-toggle {
  display: grid;
  place-items: center;
  width: 4.4rem;
  min-width: 4.4rem;
  height: 4.4rem;
  border: 0;
  border-radius: 1.2rem;
  color: var(--vef8-text);
  background: var(--vef8-surface-2);
  cursor: pointer;
}
.vef8-menu-toggle i { font-size: 2.4rem; }
.vef8-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  padding: 8rem 2rem 3rem;
  background: rgba(15, 15, 35, 0.98);
  opacity: 0;
  transform: translateY(-2rem);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
}
.vef8-mobile-menu.vef8-menu-open { visibility: visible; opacity: 1; transform: none; }
.vef8-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.vef8-menu-head strong { font-size: 2.2rem; }
.vef8-menu-close { width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; color: var(--vef8-text); background: var(--vef8-surface-2); }
.vef8-mobile-menu a, .vef8-mobile-menu button.vef8-menu-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 5.2rem;
  padding: 1rem 1.2rem;
  border: 0;
  border-bottom: 0.1rem solid var(--vef8-border);
  color: var(--vef8-text);
  background: transparent;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
}
.vef8-mobile-menu i, .vef8-mobile-menu ion-icon { width: 2.6rem; color: var(--vef8-primary); font-size: 2.3rem; }

.vef8-main { padding-top: 6.8rem; }
.vef8-hero { padding-top: 1.6rem; }
.vef8-slider { position: relative; overflow: hidden; border: 0.1rem solid var(--vef8-border); border-radius: 2rem; box-shadow: var(--vef8-shadow); aspect-ratio: 16 / 9; }
.vef8-slide { position: absolute; inset: 0; visibility: hidden; border: 0; padding: 0; background: transparent; opacity: 0; cursor: pointer; transition: opacity 0.5s ease, visibility 0.5s; }
.vef8-slide.vef8-slide-active { visibility: visible; opacity: 1; }
.vef8-slide img { width: 100%; height: 100%; object-fit: cover; }
.vef8-slide::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(15, 15, 35, 0.85)); }
.vef8-slide-caption { position: absolute; z-index: 1; left: 1.6rem; right: 1.6rem; bottom: 1.7rem; color: white; font-size: clamp(1.7rem, 5vw, 2.8rem); line-height: 1.2; font-weight: 900; text-align: left; }
.vef8-slider-arrow { position: absolute; z-index: 2; top: 50%; width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; color: var(--vef8-text); background: rgba(15, 15, 35, 0.72); transform: translateY(-50%); cursor: pointer; }
.vef8-slider-prev { left: 0.8rem; }
.vef8-slider-next { right: 0.8rem; }
.vef8-slider-dots { position: absolute; z-index: 3; right: 1.4rem; bottom: 1.2rem; display: flex; gap: 0.6rem; }
.vef8-dot { width: 1rem; height: 1rem; padding: 0; border: 0; border-radius: 50%; background: var(--vef8-muted); cursor: pointer; }
.vef8-dot.vef8-dot-active { width: 2.4rem; border-radius: 1rem; background: var(--vef8-primary); }
.vef8-hero-copy { padding: 2.6rem 0 1rem; }
.vef8-hero-copy h1 { margin: 0; font-size: clamp(3.1rem, 10vw, 5.5rem); line-height: 1.05; }
.vef8-hero-copy p { color: var(--vef8-muted); line-height: 2.3rem; }
.vef8-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.vef8-category-nav { position: sticky; top: 6.8rem; z-index: 20; overflow-x: auto; display: flex; gap: 0.8rem; padding: 1rem 0; background: var(--vef8-bg); scrollbar-width: none; }
.vef8-category-nav::-webkit-scrollbar { display: none; }
.vef8-category-nav a { min-height: 4.4rem; display: inline-flex; align-items: center; flex: 0 0 auto; padding: 0.8rem 1.4rem; border: 0.1rem solid var(--vef8-border); border-radius: 3rem; color: var(--vef8-text); background: var(--vef8-surface); font-size: 1.3rem; font-weight: 800; text-decoration: none; }
.vef8-category-nav a:hover { color: var(--vef8-bg); background: var(--vef8-primary); }
.vef8-game-group { padding-top: 2.8rem; }
.vef8-game-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.vef8-game-head h2 { margin: 0; font-size: 2.1rem; line-height: 1.2; }
.vef8-game-head span { color: var(--vef8-muted); font-size: 1.2rem; }
.vef8-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.vef8-card { min-width: 0; overflow: hidden; border: 0.1rem solid var(--vef8-border); border-radius: 1.3rem; background: var(--vef8-surface); transition: transform 0.2s ease, border-color 0.2s ease; }
.vef8-card:hover { border-color: var(--vef8-primary); transform: translateY(-0.3rem); }
.vef8-game-link { display: block; min-height: 4.4rem; padding: 0; border: 0; color: var(--vef8-text); background: transparent; text-align: left; cursor: pointer; }
.vef8-game-link img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--vef8-surface-2); }
.vef8-game-link span { display: -webkit-box; min-height: 5rem; overflow: hidden; padding: 0.9rem 0.8rem; font-size: 1.2rem; line-height: 1.55rem; font-weight: 800; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.vef8-panel { border: 0.1rem solid var(--vef8-border); border-radius: 2rem; background: linear-gradient(145deg, var(--vef8-surface), rgba(36, 36, 71, 0.62)); box-shadow: var(--vef8-shadow); }
.vef8-panel-inner { padding: 2rem; }
.vef8-feature-grid { display: grid; gap: 1.2rem; }
.vef8-feature { padding: 1.6rem; border: 0.1rem solid var(--vef8-border); border-radius: 1.5rem; background: rgba(15, 15, 35, 0.45); }
.vef8-feature i, .vef8-feature ion-icon { color: var(--vef8-accent); font-size: 2.6rem; }
.vef8-feature h3 { margin: 1rem 0 0.7rem; font-size: 1.7rem; line-height: 1.2; }
.vef8-feature p { margin: 0; color: var(--vef8-muted); line-height: 2.2rem; }
.vef8-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.vef8-stat { padding: 1.5rem; border-radius: 1.4rem; background: var(--vef8-surface-2); }
.vef8-stat strong { display: block; color: var(--vef8-highlight); font-size: 2.2rem; line-height: 1.2; }
.vef8-stat span { color: var(--vef8-muted); font-size: 1.2rem; }
.vef8-steps { display: grid; gap: 1rem; padding: 0; list-style: none; counter-reset: vef8-step; }
.vef8-steps li { position: relative; min-height: 6rem; padding: 1.4rem 1.4rem 1.4rem 6rem; border: 0.1rem solid var(--vef8-border); border-radius: 1.4rem; background: var(--vef8-surface); counter-increment: vef8-step; }
.vef8-steps li::before { content: counter(vef8-step); position: absolute; left: 1.3rem; top: 1.1rem; display: grid; place-items: center; width: 3.6rem; height: 3.6rem; border-radius: 50%; color: var(--vef8-bg); background: var(--vef8-primary); font-weight: 900; }
.vef8-steps strong { display: block; margin-bottom: 0.5rem; }
.vef8-steps span { color: var(--vef8-muted); line-height: 2.1rem; }
.vef8-review-grid { display: grid; gap: 1rem; }
.vef8-review { margin: 0; padding: 1.6rem; border-left: 0.4rem solid var(--vef8-primary); border-radius: 0 1.4rem 1.4rem 0; background: var(--vef8-surface); }
.vef8-review p { margin: 0 0 1rem; line-height: 2.2rem; }
.vef8-review footer { color: var(--vef8-accent); font-weight: 800; }
.vef8-faq-list { display: grid; gap: 0.8rem; }
.vef8-faq-item { overflow: hidden; border: 0.1rem solid var(--vef8-border); border-radius: 1.4rem; background: var(--vef8-surface); }
.vef8-faq-question { width: 100%; min-height: 5.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; border: 0; color: var(--vef8-text); background: transparent; font-weight: 900; text-align: left; cursor: pointer; }
.vef8-faq-question i { color: var(--vef8-primary); transition: transform 0.2s ease; }
.vef8-faq-answer { display: none; padding: 0 1.4rem 1.4rem; color: var(--vef8-muted); line-height: 2.2rem; }
.vef8-faq-open .vef8-faq-answer { display: block; }
.vef8-faq-open .vef8-faq-question i { transform: rotate(180deg); }
.vef8-responsible { padding: 1.4rem; border: 0.1rem solid rgba(255, 179, 71, 0.45); border-radius: 1.4rem; color: var(--vef8-highlight); background: rgba(255, 179, 71, 0.08); line-height: 2.2rem; }

.vef8-footer { margin-top: 4rem; padding: 3.5rem 0 9rem; border-top: 0.1rem solid var(--vef8-border); background: #0a0a1a; }
.vef8-footer-grid { display: grid; gap: 2.2rem; }
.vef8-footer h2 { margin: 0 0 1rem; font-size: 2rem; }
.vef8-footer p { color: var(--vef8-muted); line-height: 2.2rem; }
.vef8-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.vef8-footer-links a, .vef8-footer-links button { min-height: 4.4rem; display: inline-flex; align-items: center; padding: 0.8rem 1.2rem; border: 0.1rem solid var(--vef8-border); border-radius: 1rem; color: var(--vef8-text); background: var(--vef8-surface); font-weight: 700; text-decoration: none; cursor: pointer; }
.vef8-copyright { margin-top: 2.4rem; padding-top: 1.8rem; border-top: 0.1rem solid var(--vef8-border); color: var(--vef8-muted); font-size: 1.2rem; }
.vef8-bottom-nav { position: fixed; z-index: 1000; right: 0.8rem; bottom: 0.8rem; left: 0.8rem; height: 6.4rem; display: flex; justify-content: space-around; border: 0.1rem solid var(--vef8-border); border-radius: 1.8rem; background: #181832; box-shadow: 0 -0.7rem 2.4rem rgba(0, 0, 0, 0.4); }
.vef8-bottom-item { position: relative; min-width: 6rem; min-height: 6rem; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.25rem; border: 0; color: var(--vef8-muted); background: transparent; font-size: 1.1rem; text-decoration: none; cursor: pointer; transition: color 0.2s ease, transform 0.2s ease; }
.vef8-bottom-item i, .vef8-bottom-item ion-icon, .vef8-bottom-item .material-icons { font-size: 2.4rem; }
.vef8-bottom-item:hover, .vef8-bottom-item:active { color: var(--vef8-primary); transform: scale(0.94); }
.vef8-bottom-active { color: var(--vef8-highlight); }
.vef8-bottom-active::before { content: ""; position: absolute; top: 0.3rem; width: 2.4rem; height: 0.3rem; border-radius: 1rem; background: var(--vef8-primary); }
.vef8-badge { position: absolute; top: 0.5rem; right: 0.8rem; display: grid; place-items: center; min-width: 1.7rem; height: 1.7rem; padding: 0 0.4rem; border-radius: 1rem; color: var(--vef8-bg); background: var(--vef8-accent); font-size: 1rem; font-weight: 900; }

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .vef8-auth .vef8-btn { padding-inline: 1rem; font-size: 1.2rem; }
  .vef8-brand-name { display: none; }
}
@media (max-width: 430px) {
  .vef8-container { width: min(100% - 1.6rem, 41.4rem); }
  .vef8-header-inner { gap: 0.5rem; }
  .vef8-auth { gap: 0.4rem; }
  .vef8-auth .vef8-btn { padding-inline: 0.8rem; font-size: 1.1rem; }
  .vef8-menu-toggle { width: 4rem; min-width: 4rem; height: 4rem; }
  .vef8-grid { gap: 0.8rem; }
  .vef8-bottom-nav { right: 0.4rem; left: 0.4rem; }
  .vef8-bottom-item { min-width: 5.6rem; }
}
@media (min-width: 500px) {
  .vef8-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vef8-feature-grid, .vef8-review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .vef8-container { width: min(100% - 4rem, 118rem); }
  .vef8-desktop-nav { display: flex; }
  .vef8-menu-toggle, .vef8-mobile-menu, .vef8-bottom-nav { display: none; }
  .vef8-auth { margin-left: 1rem; }
  .vef8-hero { padding-top: 2.4rem; }
  .vef8-hero-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(30rem, 0.75fr); align-items: center; gap: 3rem; }
  .vef8-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.4rem; }
  .vef8-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .vef8-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .vef8-review-grid { grid-template-columns: repeat(3, 1fr); }
  .vef8-footer { padding-bottom: 3.5rem; }
  .vef8-footer-grid { grid-template-columns: 1fr 1.5fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
