:root {
  font-size: 62.5%;
  --vf56-primary: #32CD32;
  --vf56-bg: #1E1E1E;
  --vf56-panel: #111711;
  --vf56-card: #242824;
  --vf56-line: rgba(50, 205, 50, 0.28);
  --vf56-text: #F4FFF4;
  --vf56-muted: #B9CBB9;
  --vf56-gold: #F8D34B;
  --vf56-orange: #FF8A3D;
  --vf56-danger: #FF4F6D;
  --vf56-blue: #54D7FF;
  --vf56-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.38);
}
* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; overflow-x: hidden; }
body {
  font-family: 'Noto Sans Bengali', 'Hind Siliguri', system-ui, sans-serif;
  background: radial-gradient(circle at top left, rgba(50, 205, 50, 0.18), transparent 28rem), var(--vf56-bg);
  color: var(--vf56-text);
  font-size: 1.5rem;
  line-height: 1.5rem;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.vf56-wrapper {
  width: min(100%, 43rem);
  margin: 0 auto;
  background: linear-gradient(180deg, #151815 0%, #1E1E1E 38%, #151815 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 5rem rgba(0, 0, 0, 0.42);
}
.vf56-container { width: 100%; padding: 0 1.4rem; }
.vf56-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 43rem);
  z-index: 1000;
  background: rgba(17, 23, 17, 0.94);
  border-bottom: 0.1rem solid var(--vf56-line);
  backdrop-filter: blur(1.4rem);
  transition: all 0.25s ease;
}
.vf56-header-compact { box-shadow: var(--vf56-shadow); }
.vf56-topbar { display: flex; align-items: center; gap: 0.8rem; min-height: 6.2rem; padding: 0.8rem 1.2rem; }
.vf56-brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; flex: 1; text-decoration: none; }
.vf56-logo { width: 3rem; height: 3rem; border-radius: 0.9rem; border: 0.1rem solid rgba(50, 205, 50, 0.55); background: #0b0e0b; }
.vf56-brand-text { display: flex; flex-direction: column; gap: 0.2rem; }
.vf56-brand-name { font-size: 2rem; font-weight: 900; letter-spacing: 0.03em; color: var(--vf56-primary); line-height: 1.1; }
.vf56-brand-sub { font-size: 1rem; color: var(--vf56-muted); line-height: 1; }
.vf56-actions { display: flex; align-items: center; gap: 0.5rem; }
.vf56-btn {
  min-height: 4.4rem;
  min-width: 4.4rem;
  border: 0;
  border-radius: 1.4rem;
  padding: 0 1rem;
  cursor: pointer;
  font-weight: 900;
  color: #081008;
  background: linear-gradient(135deg, var(--vf56-primary), #A8FF72);
  box-shadow: 0 0.7rem 1.8rem rgba(50, 205, 50, 0.2);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.vf56-btn:active, .vf56-bottom-item:active { transform: scale(0.94); }
.vf56-btn-outline { background: transparent; color: var(--vf56-primary); border: 0.1rem solid var(--vf56-line); box-shadow: none; }
.vf56-menu-toggle { background: #283028; color: var(--vf56-text); border: 0.1rem solid var(--vf56-line); width: 4.4rem; padding: 0; }
.vf56-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(88vw, 34rem);
  height: 100vh;
  z-index: 9999;
  padding: 2rem 1.4rem;
  background: linear-gradient(180deg, #091009, #182318 72%, #0d120d);
  border-left: 0.1rem solid var(--vf56-line);
  box-shadow: -2rem 0 4rem rgba(0, 0, 0, 0.45);
  transition: right 0.28s ease;
  overflow-y: auto;
}
.vf56-mobile-panel.vf56-is-open { right: 0; }
.vf56-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.vf56-menu-title { font-size: 2rem; font-weight: 900; color: var(--vf56-primary); }
.vf56-menu-close { width: 4.4rem; height: 4.4rem; border-radius: 50%; border: 0.1rem solid var(--vf56-line); color: var(--vf56-text); background: transparent; }
.vf56-nav { display: grid; gap: 0.9rem; }
.vf56-nav-link { min-height: 4.6rem; display: flex; align-items: center; gap: 0.9rem; padding: 0 1.2rem; color: var(--vf56-text); text-decoration: none; border: 0.1rem solid rgba(255, 255, 255, 0.08); border-radius: 1.6rem; background: rgba(255, 255, 255, 0.04); }
.vf56-main { padding-top: 7.4rem; }
.vf56-hero { padding: 1.2rem 0 0; }
.vf56-carousel { position: relative; overflow: hidden; border-radius: 2.2rem; border: 0.1rem solid var(--vf56-line); background: #0a0d0a; min-height: 17rem; }
.vf56-slide { display: none; position: relative; }
.vf56-slide-active { display: block; }
.vf56-slide img { width: 100%; height: 18.5rem; object-fit: cover; opacity: 0.82; }
.vf56-slide-copy { position: absolute; inset: auto 1rem 1rem 1rem; padding: 1rem; border-radius: 1.5rem; background: rgba(0, 0, 0, 0.54); }
.vf56-dotbar { position: absolute; top: 1rem; right: 1rem; display: flex; gap: 0.5rem; }
.vf56-dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgba(255, 255, 255, 0.42); }
.vf56-dot-active { width: 2.2rem; border-radius: 999px; background: var(--vf56-primary); }
.vf56-kicker { color: var(--vf56-gold); font-size: 1.2rem; font-weight: 900; }
.vf56-title { font-size: clamp(2.4rem, 7vw, 3.4rem); line-height: 1.08; margin: 1.4rem 0 1rem; color: var(--vf56-text); }
.vf56-lead { color: var(--vf56-muted); line-height: 2.2rem; margin: 0 0 1.3rem; }
.vf56-cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.4rem 0; }
.vf56-link-strong { color: var(--vf56-primary); font-weight: 900; text-decoration: underline; text-underline-offset: 0.3rem; cursor: pointer; }
.vf56-section { padding: 1.7rem 0; }
.vf56-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.vf56-section-title { font-size: 2.2rem; line-height: 1.15; margin: 0; }
.vf56-section-note { color: var(--vf56-muted); font-size: 1.2rem; }
.vf56-card { background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)); border: 0.1rem solid rgba(50, 205, 50, 0.22); border-radius: 2rem; padding: 1.4rem; box-shadow: var(--vf56-shadow); }
.vf56-grid { display: grid; gap: 1rem; }
.vf56-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vf56-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.vf56-stat { text-align: center; border-radius: 1.4rem; padding: 1rem 0.5rem; background: #111611; border: 0.1rem solid rgba(255,255,255,0.06); }
.vf56-stat strong { display: block; color: var(--vf56-primary); font-size: 2rem; line-height: 1.2; }
.vf56-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.vf56-game { min-height: 10.5rem; padding: 0.6rem; border-radius: 1.4rem; text-align: center; text-decoration: none; background: rgba(255,255,255,0.045); border: 0.1rem solid rgba(255,255,255,0.07); display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.vf56-game img { width: 5.8rem; height: 5.8rem; border-radius: 1.2rem; object-fit: cover; }
.vf56-game span { font-size: 1.08rem; line-height: 1.25; color: var(--vf56-text); }
.vf56-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.8rem; border-radius: 999px; background: rgba(50, 205, 50, 0.12); color: var(--vf56-primary); font-size: 1.15rem; font-weight: 800; }
.vf56-list { display: grid; gap: 0.8rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.vf56-list li { padding: 1rem; border-radius: 1.4rem; background: rgba(255,255,255,0.045); border-left: 0.3rem solid var(--vf56-primary); }
.vf56-footer { padding: 2.2rem 1.4rem 8.6rem; background: #0d110d; border-top: 0.1rem solid var(--vf56-line); }
.vf56-footer-links, .vf56-partners { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.2rem 0; }
.vf56-footer-link, .vf56-partner { text-decoration: none; border-radius: 999px; padding: 0.8rem 1rem; background: rgba(255,255,255,0.06); color: var(--vf56-muted); border: 0.1rem solid rgba(255,255,255,0.07); }
.vf56-partner { color: var(--vf56-primary); font-weight: 900; }
.vf56-bottom-nav { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); width: min(100%, 43rem); height: 6.2rem; z-index: 1000; display: flex; justify-content: space-around; align-items: center; background: #101710; border-top: 0.1rem solid var(--vf56-line); box-shadow: 0 -1rem 2.4rem rgba(0,0,0,0.36); }
.vf56-bottom-item { min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: var(--vf56-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; font-size: 1rem; cursor: pointer; transition: color 0.18s ease, transform 0.18s ease; }
.vf56-bottom-item i, .vf56-bottom-item .material-icons, .vf56-bottom-item ion-icon { font-size: 2.3rem; line-height: 1; }
.vf56-bottom-active { color: var(--vf56-primary); }
.vf56-bottom-active i, .vf56-bottom-active .material-icons, .vf56-bottom-active ion-icon { filter: drop-shadow(0 0 0.8rem rgba(50,205,50,0.48)); }
.vf56-review { border-left: 0.4rem solid var(--vf56-gold); }
.vf56-payments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.vf56-payment { padding: 1rem 0.4rem; text-align: center; border-radius: 1.3rem; background: rgba(50,205,50,0.09); font-weight: 900; }
.vf56-page-article p { line-height: 2.35rem; color: var(--vf56-muted); }
.vf56-page-article h2, .vf56-page-article h3 { line-height: 1.25; }
.vf56-step { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; align-items: start; }
.vf56-step-num { width: 3.6rem; height: 3.6rem; border-radius: 50%; display: grid; place-items: center; background: var(--vf56-primary); color: #061006; font-weight: 900; }
@media (min-width: 769px) { .vf56-bottom-nav { display: none; } .vf56-wrapper, .vf56-header { max-width: 43rem; } }
@media (max-width: 768px) { .vf56-main { padding-bottom: 8rem; } }
