:root {
  font-size: 62.5%;
  --vbfb-primary: #ff0000;
  --vbfb-primary-soft: #ff4b4b;
  --vbfb-bg: #0c0c0c;
  --vbfb-panel: #161616;
  --vbfb-panel-2: #242424;
  --vbfb-text: #f6f6f6;
  --vbfb-muted: #a9a9a9;
  --vbfb-line: rgba(255,255,255,.12);
  --vbfb-gold: #ffd76a;
  --vbfb-shadow: 0 1.8rem 4rem rgba(0,0,0,.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,0,0,.22), transparent 32rem), var(--vbfb-bg);
  color: var(--vbfb-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.vbfb-page { min-height: 100vh; }
.vbfb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12,12,12,.94);
  border-bottom: .1rem solid var(--vbfb-line);
  backdrop-filter: blur(1.2rem);
}
.vbfb-topbar {
  width: min(100%, 43rem);
  margin: 0 auto;
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1rem;
}
.vbfb-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; min-width: 8.6rem; }
.vbfb-logo img { width: 3rem; height: 3rem; border-radius: .8rem; }
.vbfb-logo strong { font-size: 1.8rem; letter-spacing: .06rem; color: #fff; }
.vbfb-header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.vbfb-btn {
  border: 0;
  border-radius: 999rem;
  min-height: 4.4rem;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.vbfb-btn:active { transform: scale(.95); }
.vbfb-btn-primary { background: linear-gradient(135deg, var(--vbfb-primary), #a40000); color: #fff; box-shadow: 0 .8rem 2rem rgba(255,0,0,.32); }
.vbfb-btn-ghost { background: #242424; color: #fff; border: .1rem solid var(--vbfb-line); }
.vbfb-btn-gold { background: linear-gradient(135deg, var(--vbfb-gold), #ff9d00); color: #180600; }
.vbfb-menu-toggle {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.4rem;
  border: .1rem solid var(--vbfb-line);
  background: var(--vbfb-panel-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vbfb-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12,12,12,.98);
  transform: translateY(-110%);
  transition: transform .26s ease;
  padding: 8rem 1.6rem 2rem;
  overflow-y: auto;
}
.vbfb-mobile-menu.vbfb-menu-open { transform: translateY(0); }
.vbfb-menu-grid { width: min(100%, 43rem); margin: 0 auto; display: grid; gap: 1rem; }
.vbfb-menu-link {
  min-height: 5.2rem;
  border-radius: 1.6rem;
  border: .1rem solid var(--vbfb-line);
  background: linear-gradient(135deg, #1b1b1b, #101010);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.4rem;
  text-decoration: none;
  color: #fff;
}
.vbfb-container { width: min(100%, 43rem); margin: 0 auto; padding: 0 1.2rem; }
.vbfb-main { padding-top: 7.2rem; }
.vbfb-hero { padding: 1.4rem 0 1rem; }
.vbfb-badge { display: inline-flex; align-items: center; gap: .6rem; color: var(--vbfb-gold); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08rem; }
.vbfb-title { font-size: clamp(2.6rem, 8vw, 3.8rem); line-height: 1.05; margin: 1rem 0; letter-spacing: -.08rem; }
.vbfb-lead { color: var(--vbfb-muted); line-height: 1.65; margin: 0 0 1.2rem; }
.vbfb-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0; }
.vbfb-carousel { position: relative; min-height: 18rem; border-radius: 2.2rem; overflow: hidden; background: #1c1c1c; box-shadow: var(--vbfb-shadow); }
.vbfb-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; cursor: pointer; }
.vbfb-slide.vbfb-active { opacity: 1; position: relative; }
.vbfb-slide img { width: 100%; height: 18rem; object-fit: cover; filter: saturate(1.08) contrast(1.05); }
.vbfb-slide-caption { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; padding: 1rem; border-radius: 1.4rem; background: rgba(0,0,0,.66); }
.vbfb-dots { position: absolute; right: 1.2rem; top: 1.2rem; display: flex; gap: .5rem; }
.vbfb-dot { width: .9rem; height: .9rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.38); padding: 0; cursor: pointer; }
.vbfb-dot.vbfb-active { background: var(--vbfb-primary); }
.vbfb-section { padding: 1.7rem 0; }
.vbfb-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.vbfb-section h2 { font-size: 2.2rem; line-height: 1.15; margin: 0 0 .8rem; }
.vbfb-section h3 { font-size: 1.7rem; line-height: 1.25; margin: 1rem 0 .6rem; }
.vbfb-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: .1rem solid var(--vbfb-line);
  border-radius: 2rem;
  padding: 1.4rem;
  box-shadow: 0 1rem 2.8rem rgba(0,0,0,.18);
}
.vbfb-card + .vbfb-card { margin-top: 1rem; }
.vbfb-grid { display: grid; gap: 1rem; }
.vbfb-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vbfb-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.vbfb-game {
  min-height: 9.8rem;
  padding: .65rem;
  border-radius: 1.4rem;
  background: #171717;
  border: .1rem solid var(--vbfb-line);
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: center;
  justify-content: flex-start;
}
.vbfb-game img { width: 4.8rem; height: 4.8rem; border-radius: 1.1rem; object-fit: cover; }
.vbfb-game span { font-size: 1.08rem; line-height: 1.18; font-weight: 700; }
.vbfb-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.vbfb-stat { background: #101010; border: .1rem solid var(--vbfb-line); border-radius: 1.6rem; padding: 1rem; text-align: center; }
.vbfb-stat strong { display: block; color: var(--vbfb-gold); font-size: 1.8rem; }
.vbfb-promo-text { color: #fff; font-weight: 900; text-decoration: underline; text-decoration-color: var(--vbfb-primary); cursor: pointer; }
.vbfb-link { color: var(--vbfb-gold); text-decoration: underline; text-underline-offset: .3rem; }
.vbfb-pill-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.vbfb-pill { border: .1rem solid var(--vbfb-line); border-radius: 999rem; padding: .7rem 1rem; background: #151515; color: var(--vbfb-muted); font-size: 1.25rem; }
.vbfb-steps { counter-reset: step; display: grid; gap: 1rem; padding: 0; margin: 0; list-style: none; }
.vbfb-step { position: relative; padding: 1.2rem 1.2rem 1.2rem 4.5rem; background: #141414; border-radius: 1.6rem; border: .1rem solid var(--vbfb-line); }
.vbfb-step:before { counter-increment: step; content: counter(step); position: absolute; left: 1rem; top: 1rem; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--vbfb-primary); color: #fff; display: grid; place-items: center; font-weight: 900; }
.vbfb-review { border-left: .35rem solid var(--vbfb-primary); padding-left: 1rem; color: var(--vbfb-muted); }
.vbfb-footer { margin-top: 2rem; padding: 2.2rem 0 9rem; background: #070707; border-top: .1rem solid var(--vbfb-line); }
.vbfb-footer-links, .vbfb-footer-promos { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.1rem 0; }
.vbfb-footer-links a { color: var(--vbfb-muted); font-size: 1.25rem; text-decoration: none; border-bottom: .1rem solid rgba(169,169,169,.45); }
.vbfb-partners { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.vbfb-partner { min-width: 6.4rem; min-height: 3.2rem; border-radius: .9rem; border: .1rem solid var(--vbfb-line); display: grid; place-items: center; color: var(--vbfb-gold); font-weight: 900; background: #111; }
.vbfb-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  height: 6.2rem;
  background: #151515;
  border-top: .2rem solid var(--vbfb-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -1rem 2.6rem rgba(0,0,0,.45);
}
.vbfb-bottom-btn {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  color: var(--vbfb-muted);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}
.vbfb-bottom-btn i, .vbfb-bottom-btn ion-icon, .vbfb-bottom-btn .material-icons-outlined { font-size: 2.4rem; line-height: 1; }
.vbfb-bottom-btn.vbfb-active { color: #fff; background: radial-gradient(circle, rgba(255,0,0,.32), transparent 60%); }
.vbfb-bottom-btn:active { transform: scale(.9); color: var(--vbfb-primary-soft); }
.vbfb-badge-dot { position: absolute; width: .8rem; height: .8rem; border-radius: 50%; background: var(--vbfb-gold); margin-left: 2rem; margin-top: -2rem; }
.vbfb-body-locked { overflow: hidden; }
.vbfb-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; }
.vbfb-table th, .vbfb-table td { padding: .9rem; border-bottom: .1rem solid var(--vbfb-line); text-align: left; }
.vbfb-table th { color: var(--vbfb-gold); background: #111; }
.vbfb-note { color: var(--vbfb-muted); font-size: 1.35rem; }
@media (min-width: 769px) {
  .vbfb-bottom-nav { display: none; }
  .vbfb-mobile-menu { max-width: 43rem; left: 50%; transform: translate(-50%, -110%); }
  .vbfb-mobile-menu.vbfb-menu-open { transform: translate(-50%, 0); }
  .vbfb-footer { padding-bottom: 2.6rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
  .vbfb-desktop-only { display: none !important; }
}
@media (max-width: 360px) {
  .vbfb-topbar { gap: .45rem; padding-left: .7rem; padding-right: .7rem; }
  .vbfb-btn { padding: 0 1rem; font-size: 1.25rem; }
  .vbfb-game-grid { gap: .55rem; }
  .vbfb-game span { font-size: .98rem; }
}
