:root {
  font-size: 62.5%;
  --v7ff-primary: #f08080;
  --v7ff-primary-dark: #d85f68;
  --v7ff-accent: #baffc9;
  --v7ff-bg: #0e1621;
  --v7ff-panel: #182635;
  --v7ff-panel-soft: #223649;
  --v7ff-text: #ecf0f1;
  --v7ff-muted: #aeb9c2;
  --v7ff-line: rgba(236, 240, 241, .13);
  --v7ff-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, .3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 8rem; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--v7ff-text);
  background: var(--v7ff-bg);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
body.v7ff-menu-locked { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.v7ff-skip {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 10001;
  padding: 1.2rem 1.6rem;
  color: var(--v7ff-bg);
  background: var(--v7ff-accent);
  border-radius: .8rem;
}
.v7ff-skip:focus { top: 1rem; }
.v7ff-container { width: min(100% - 2.4rem, 112rem); margin-inline: auto; }
.v7ff-wrapper { display: flex; flex-direction: column; gap: 1.6rem; }
.v7ff-grid { display: grid; gap: 1.2rem; }

.v7ff-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 6.6rem;
  background: rgba(14, 22, 33, .96);
  border-bottom: .1rem solid var(--v7ff-line);
  backdrop-filter: blur(1.2rem);
}
.v7ff-header-row { min-height: 6.6rem; display: flex; align-items: center; gap: .8rem; }
.v7ff-brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; text-decoration: none; }
.v7ff-brand img { width: 3.2rem; height: 3.2rem; object-fit: contain; }
.v7ff-brand strong { font-size: 2rem; line-height: 1; letter-spacing: .06em; text-transform: uppercase; }
.v7ff-actions { display: flex; gap: .6rem; }
.v7ff-btn {
  min-height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .9rem 1.4rem;
  color: #0e1621;
  background: var(--v7ff-primary);
  border: .1rem solid transparent;
  border-radius: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.v7ff-btn:hover, .v7ff-btn:focus-visible { background: #ff9999; box-shadow: 0 .5rem 1.6rem rgba(240, 128, 128, .28); transform: translateY(-.1rem); }
.v7ff-btn:active { transform: scale(.96); }
.v7ff-btn-outline { color: var(--v7ff-text); background: transparent; border-color: var(--v7ff-accent); }
.v7ff-btn-accent { background: var(--v7ff-accent); }
.v7ff-menu-toggle { width: 4.4rem; padding: 0; color: var(--v7ff-text); background: var(--v7ff-panel-soft); }
.v7ff-desktop-nav { display: none; align-items: center; gap: 2rem; }
.v7ff-desktop-nav a { color: var(--v7ff-text); font-weight: 700; text-decoration: none; }
.v7ff-desktop-nav a:hover { color: var(--v7ff-accent); }

.v7ff-mobile-menu {
  position: fixed;
  top: 6.6rem;
  right: 1.2rem;
  z-index: 9999;
  width: min(32rem, calc(100% - 2.4rem));
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
  padding: 1.2rem;
  background: #172535;
  border: .1rem solid var(--v7ff-line);
  border-radius: 1.4rem;
  box-shadow: var(--v7ff-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem) scale(.98);
  transition: .2s ease;
}
.v7ff-mobile-menu.v7ff-menu-open { opacity: 1; visibility: visible; transform: none; }
.v7ff-mobile-menu a { min-height: 4.6rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-bottom: .1rem solid var(--v7ff-line); text-decoration: none; font-weight: 700; }
.v7ff-mobile-menu a:last-child { border: 0; }
.v7ff-mobile-menu a:hover { color: var(--v7ff-accent); background: rgba(186, 255, 201, .06); }

.v7ff-main { padding-top: 7.8rem; }
.v7ff-carousel { position: relative; overflow: hidden; border-radius: 1.8rem; box-shadow: var(--v7ff-shadow); background: var(--v7ff-panel); }
.v7ff-slide { display: none; position: relative; min-height: 18rem; cursor: pointer; }
.v7ff-slide.v7ff-slide-active { display: block; animation: v7ff-fade .5s ease; }
.v7ff-slide img { width: 100%; aspect-ratio: 16 / 7; min-height: 18rem; object-fit: cover; }
.v7ff-slide::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(14, 22, 33, .92)); }
.v7ff-slide-copy { position: absolute; z-index: 2; left: 1.6rem; right: 1.6rem; bottom: 1.8rem; }
.v7ff-slide-copy strong { display: block; font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.05; }
.v7ff-slide-copy span { display: block; margin-top: .7rem; color: var(--v7ff-accent); font-weight: 700; }
.v7ff-carousel-controls { position: absolute; z-index: 3; inset: 50% .8rem auto; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.v7ff-carousel-arrow { width: 4.4rem; height: 4.4rem; color: #fff; background: rgba(14, 22, 33, .72); border: .1rem solid var(--v7ff-line); border-radius: 50%; cursor: pointer; pointer-events: auto; }
.v7ff-carousel-dots { position: absolute; z-index: 4; right: 1.4rem; bottom: 1.3rem; display: flex; gap: .5rem; }
.v7ff-carousel-dot { width: 1rem; height: 1rem; min-width: 1rem; padding: 0; background: rgba(255, 255, 255, .45); border: 0; border-radius: 50%; cursor: pointer; }
.v7ff-carousel-dot.v7ff-dot-active { width: 2.4rem; border-radius: 2rem; background: var(--v7ff-primary); }
@keyframes v7ff-fade { from { opacity: .3; } to { opacity: 1; } }

.v7ff-hero-copy { padding: 2.4rem 0 1rem; }
.v7ff-eyebrow { margin: 0 0 .8rem; color: var(--v7ff-accent); font-size: 1.2rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.v7ff-title { margin: 0; font-size: clamp(3rem, 9vw, 5rem); line-height: 1.05; }
.v7ff-lead { max-width: 76rem; margin: 1.2rem 0 0; color: #d8e0e5; font-size: 1.7rem; line-height: 2.5rem; }
.v7ff-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

.v7ff-section { padding: 3.6rem 0; }
.v7ff-section-alt { background: linear-gradient(135deg, rgba(44, 62, 80, .44), rgba(14, 22, 33, .1)); border-block: .1rem solid var(--v7ff-line); }
.v7ff-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.v7ff-section h2 { margin: 0; font-size: clamp(2.3rem, 6vw, 3.4rem); line-height: 1.15; }
.v7ff-section h3 { margin: 0; font-size: 1.8rem; line-height: 1.25; }
.v7ff-section p, .v7ff-section li { line-height: 2.35rem; }
.v7ff-section-link { color: var(--v7ff-primary); font-weight: 900; text-decoration-thickness: .2rem; }
.v7ff-note { color: var(--v7ff-muted); }

.v7ff-category { margin-top: 3rem; }
.v7ff-category-title { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.v7ff-category-title i, .v7ff-category-title ion-icon { color: var(--v7ff-primary); font-size: 2.4rem; }
.v7ff-game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.v7ff-card {
  overflow: hidden;
  min-width: 0;
  background: var(--v7ff-panel);
  border: .1rem solid var(--v7ff-line);
  border-radius: 1.1rem;
  box-shadow: 0 .6rem 1.6rem rgba(0, 0, 0, .14);
}
.v7ff-game-card { cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.v7ff-game-card:hover, .v7ff-game-card:focus-visible { transform: translateY(-.3rem); border-color: var(--v7ff-primary); outline: none; }
.v7ff-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #25384b; }
.v7ff-game-name { display: flex; align-items: center; justify-content: center; min-height: 4.4rem; padding: .7rem .4rem; text-align: center; font-size: 1.15rem; font-weight: 800; line-height: 1.4rem; }

.v7ff-feature-grid { grid-template-columns: 1fr; }
.v7ff-feature-card { padding: 1.8rem; }
.v7ff-feature-icon { width: 4.6rem; height: 4.6rem; display: grid; place-items: center; margin-bottom: 1rem; color: var(--v7ff-bg); background: var(--v7ff-accent); border-radius: 1.2rem; font-size: 2.4rem; }
.v7ff-steps { counter-reset: v7ff-step; padding: 0; list-style: none; }
.v7ff-steps li { position: relative; min-height: 5rem; margin: 1rem 0; padding: 1.2rem 1.2rem 1.2rem 5.8rem; background: var(--v7ff-panel); border-radius: 1rem; }
.v7ff-steps li::before { counter-increment: v7ff-step; content: counter(v7ff-step); position: absolute; left: 1rem; top: 1rem; width: 3.4rem; height: 3.4rem; display: grid; place-items: center; color: var(--v7ff-bg); background: var(--v7ff-primary); border-radius: 50%; font-weight: 900; }
.v7ff-stat-grid { grid-template-columns: repeat(2, 1fr); }
.v7ff-stat { padding: 1.6rem 1rem; text-align: center; }
.v7ff-stat strong { display: block; color: var(--v7ff-accent); font-size: 2.4rem; line-height: 1.2; }
.v7ff-stat span { display: block; margin-top: .6rem; color: var(--v7ff-muted); line-height: 1.5; }
.v7ff-faq details { margin-bottom: .9rem; background: var(--v7ff-panel); border: .1rem solid var(--v7ff-line); border-radius: 1rem; }
.v7ff-faq summary { min-height: 4.8rem; display: flex; align-items: center; padding: 1rem 1.4rem; cursor: pointer; font-weight: 850; }
.v7ff-faq p { margin: 0; padding: 0 1.4rem 1.4rem; color: #d4dde3; }
.v7ff-responsible { padding: 1.5rem; border-left: .4rem solid var(--v7ff-primary); background: rgba(240, 128, 128, .08); border-radius: .6rem; }

.v7ff-footer { padding: 3.6rem 0 9rem; background: #0a111a; border-top: .1rem solid var(--v7ff-line); }
.v7ff-footer-brand { font-size: 2.2rem; line-height: 1; }
.v7ff-footer-copy { max-width: 70rem; color: var(--v7ff-muted); line-height: 2.3rem; }
.v7ff-footer-links { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0; }
.v7ff-footer-links a, .v7ff-footer-links button { min-height: 4.4rem; display: inline-flex; align-items: center; padding: .8rem 1.2rem; color: var(--v7ff-text); background: var(--v7ff-panel); border: .1rem solid var(--v7ff-line); border-radius: .8rem; font-weight: 750; text-decoration: none; cursor: pointer; }
.v7ff-footer-links a:hover, .v7ff-footer-links button:hover { color: var(--v7ff-accent); }
.v7ff-copyright { margin-top: 2rem; color: #8997a3; font-size: 1.25rem; }

.v7ff-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 6.2rem;
  display: flex;
  justify-content: space-around;
  background: #182635;
  border-top: .1rem solid rgba(186, 255, 201, .25);
  box-shadow: 0 -1rem 2.4rem rgba(0, 0, 0, .3);
}
.v7ff-bottom-item {
  position: relative;
  min-width: 6rem;
  min-height: 6rem;
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .4rem;
  color: #bdc8cf;
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, color .16s ease, background .16s ease;
}
.v7ff-bottom-item i, .v7ff-bottom-item ion-icon, .v7ff-bottom-item .material-icons-two-tone { font-size: 2.3rem; }
.v7ff-bottom-item span:not(.material-icons-two-tone) { font-size: 1.05rem; line-height: 1.1; font-weight: 750; }
.v7ff-bottom-item:hover, .v7ff-bottom-item:focus-visible, .v7ff-bottom-item.v7ff-current { color: var(--v7ff-accent); background: rgba(186, 255, 201, .07); }
.v7ff-bottom-item:active { transform: scale(.9); }
.v7ff-bottom-item.v7ff-current::before { content: ""; position: absolute; top: 0; width: 3.4rem; height: .3rem; background: var(--v7ff-primary); border-radius: 0 0 .4rem .4rem; }

@media (max-width: 430px) {
  .v7ff-container { width: min(100% - 2rem, 43rem); }
  .v7ff-header-row { gap: .5rem; }
  .v7ff-brand strong { font-size: 1.7rem; }
  .v7ff-actions .v7ff-btn { min-width: 6.4rem; padding-inline: .8rem; font-size: 1.2rem; }
  .v7ff-menu-toggle { width: 4.4rem; min-width: 4.4rem; }
  .v7ff-slide img { aspect-ratio: 16 / 9; }
  .v7ff-carousel-arrow { width: 4rem; height: 4rem; }
  .v7ff-lead { font-size: 1.55rem; }
  .v7ff-game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .v7ff-section { padding: 3rem 0; }
}

@media (max-width: 360px) {
  .v7ff-brand strong { display: none; }
  .v7ff-game-name { font-size: 1.05rem; }
}

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

@media (min-width: 769px) {
  .v7ff-bottom-nav { display: none; }
  .v7ff-main { padding-bottom: 0; }
  .v7ff-footer { padding-bottom: 3.6rem; }
  .v7ff-menu-toggle, .v7ff-mobile-menu { display: none; }
  .v7ff-desktop-nav { display: flex; }
  .v7ff-game-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .v7ff-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .v7ff-stat-grid { grid-template-columns: repeat(4, 1fr); }
}

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

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