/* tk1917 mobile-first visual system */
:root {
  font-size: 62.5%;
  --v0fd-bg: #0a0a0a;
  --v0fd-bg-soft: #111b1c;
  --v0fd-bg-card: #122527;
  --v0fd-primary: #40e0d0;
  --v0fd-secondary: #00b8d4;
  --v0fd-accent: #48d1cc;
  --v0fd-hot: #ffcf5a;
  --v0fd-text: #eefcfa;
  --v0fd-muted: #a9d6d2;
  --v0fd-danger: #ff6b8a;
  --v0fd-border: rgba(64, 224, 208, .22);
  --v0fd-shadow: 0 1.4rem 4rem rgba(0, 184, 212, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(64,224,208,.18), transparent 28rem), linear-gradient(180deg, #061112 0%, var(--v0fd-bg) 60%);
  color: var(--v0fd-text);
  font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--v0fd-primary); text-decoration: none; }
a:hover { color: var(--v0fd-hot); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
body.v0fd-lock { overflow: hidden; }
.v0fd-page { width: min(100%, 430px); margin: 0 auto; min-height: 100vh; background: rgba(6,13,14,.94); box-shadow: 0 0 5rem rgba(0,0,0,.55); }
.v0fd-header { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: min(100%, 430px); z-index: 1000; background: rgba(10,10,10,.94); backdrop-filter: blur(1.6rem); border-bottom: .1rem solid var(--v0fd-border); }
.v0fd-topbar { display: flex; align-items: center; justify-content: space-between; gap: .8rem; min-height: 6.4rem; padding: .8rem 1.2rem; }
.v0fd-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; color: var(--v0fd-text); font-weight: 900; letter-spacing: .04rem; }
.v0fd-brand img { width: 3.2rem; height: 3.2rem; border-radius: .9rem; box-shadow: 0 0 0 2px rgba(64,224,208,.25); }
.v0fd-brand span { font-size: 1.8rem; white-space: nowrap; }
.v0fd-actions { display: flex; align-items: center; gap: .6rem; }
.v0fd-btn { border: 0; cursor: pointer; min-height: 4.4rem; min-width: 4.4rem; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; border-radius: 1.4rem; font-weight: 900; transition: transform .18s ease, background .18s ease, color .18s ease; }
.v0fd-btn:active { transform: scale(.94); }
.v0fd-btn-primary { color: #001414; background: linear-gradient(135deg, var(--v0fd-primary), var(--v0fd-secondary)); box-shadow: 0 .8rem 2rem rgba(64,224,208,.22); padding: 0 1.2rem; }
.v0fd-btn-ghost { color: var(--v0fd-primary); background: rgba(64,224,208,.10); border: .1rem solid var(--v0fd-border); padding: 0 1rem; }
.v0fd-menu-btn { background: rgba(255,255,255,.06); color: var(--v0fd-text); border: .1rem solid rgba(255,255,255,.12); }
.v0fd-mobile-menu { position: fixed; inset: 0; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.v0fd-mobile-menu.v0fd-menu-open { opacity: 1; visibility: visible; }
.v0fd-menu-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.68); }
.v0fd-menu-panel { position: absolute; right: 0; top: 0; width: min(86%, 34rem); height: 100%; padding: 2rem; background: linear-gradient(180deg, #071616, #0b2629); border-left: .1rem solid var(--v0fd-border); transform: translateX(102%); transition: transform .25s ease; overflow-y: auto; }
.v0fd-menu-open .v0fd-menu-panel { transform: translateX(0); }
.v0fd-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.v0fd-menu-title { font-size: 2rem; font-weight: 900; color: var(--v0fd-primary); }
.v0fd-menu-list { display: grid; gap: .8rem; }
.v0fd-menu-list a { display: flex; align-items: center; gap: .8rem; min-height: 4.8rem; padding: 1rem 1.2rem; border-radius: 1.4rem; background: rgba(255,255,255,.05); color: var(--v0fd-text); border: .1rem solid rgba(255,255,255,.08); }
.v0fd-main { padding-top: 7.2rem; }
.v0fd-section { padding: 1.6rem 1.2rem; }
.v0fd-hero { padding: 1.2rem; }
.v0fd-kicker { display: inline-flex; align-items: center; gap: .6rem; padding: .7rem 1rem; border-radius: 999px; color: var(--v0fd-primary); background: rgba(64,224,208,.09); border: .1rem solid var(--v0fd-border); font-weight: 800; }
.v0fd-title { font-size: clamp(2.4rem, 8vw, 3.8rem); line-height: 1.12; margin: 1.2rem 0; color: var(--v0fd-text); letter-spacing: -.05rem; }
.v0fd-subtitle { color: var(--v0fd-muted); font-size: 1.55rem; line-height: 2.35rem; margin: 0 0 1.4rem; }
.v0fd-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.2rem 0; }
.v0fd-promo-text { color: var(--v0fd-hot); font-weight: 900; text-decoration: underline; text-decoration-thickness: .2rem; cursor: pointer; }
.v0fd-carousel { position: relative; overflow: hidden; border-radius: 2.2rem; border: .1rem solid var(--v0fd-border); box-shadow: var(--v0fd-shadow); background: #071112; }
.v0fd-slide { display: none; position: relative; min-height: 17rem; cursor: pointer; }
.v0fd-slide.v0fd-active { display: block; }
.v0fd-slide img { width: 100%; height: 18rem; object-fit: cover; opacity: .88; }
.v0fd-slide-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem; border-radius: 1.4rem; background: rgba(0,0,0,.62); color: var(--v0fd-text); font-weight: 900; }
.v0fd-dots { position: absolute; right: 1rem; top: 1rem; display: flex; gap: .5rem; }
.v0fd-dot { width: .9rem; height: .9rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.35); padding: 0; min-height: .9rem; min-width: .9rem; }
.v0fd-dot.v0fd-active { background: var(--v0fd-primary); }
.v0fd-panel { border: .1rem solid var(--v0fd-border); border-radius: 2.2rem; padding: 1.4rem; background: linear-gradient(160deg, rgba(18,37,39,.96), rgba(8,18,19,.96)); box-shadow: 0 .8rem 2.4rem rgba(0,0,0,.28); }
.v0fd-panel + .v0fd-panel { margin-top: 1.2rem; }
.v0fd-section-title { font-size: 2.2rem; line-height: 2.8rem; color: var(--v0fd-primary); margin: 0 0 1rem; }
.v0fd-section h3 { font-size: 1.75rem; color: var(--v0fd-accent); margin: 1.2rem 0 .7rem; }
.v0fd-section p { line-height: 2.35rem; color: var(--v0fd-muted); }
.v0fd-grid { display: grid; gap: 1rem; }
.v0fd-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v0fd-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v0fd-card { background: rgba(255,255,255,.045); border: .1rem solid rgba(64,224,208,.16); border-radius: 1.6rem; padding: 1.2rem; min-width: 0; }
.v0fd-card strong { color: var(--v0fd-text); }
.v0fd-chip { display: inline-flex; align-items: center; gap: .5rem; min-height: 3.2rem; padding: .6rem .9rem; border-radius: 999px; color: #001414; background: var(--v0fd-primary); font-weight: 900; }
.v0fd-stat { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: .1rem solid rgba(255,255,255,.08); }
.v0fd-stat:last-child { border-bottom: 0; }
.v0fd-stat b { color: var(--v0fd-hot); font-size: 1.8rem; }
.v0fd-game-category { margin-top: 1.4rem; }
.v0fd-category-head { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin-bottom: .8rem; }
.v0fd-category-head h2 { margin: 0; font-size: 2rem; color: var(--v0fd-primary); }
.v0fd-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
.v0fd-game { min-height: 10rem; padding: .7rem .5rem; border-radius: 1.4rem; background: rgba(255,255,255,.045); border: .1rem solid rgba(255,255,255,.08); color: var(--v0fd-text); text-align: center; cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.v0fd-game:hover { transform: translateY(-.2rem); border-color: var(--v0fd-primary); }
.v0fd-game img { width: 5.4rem; height: 5.4rem; object-fit: cover; border-radius: 1.2rem; margin: 0 auto .6rem; background: #0d2021; }
.v0fd-game span { display: block; font-size: 1.1rem; line-height: 1.35rem; font-weight: 800; }
.v0fd-list { padding-left: 1.8rem; color: var(--v0fd-muted); line-height: 2.35rem; }
.v0fd-steps { counter-reset: v0fdstep; display: grid; gap: 1rem; }
.v0fd-step { position: relative; padding: 1.2rem 1.2rem 1.2rem 4.6rem; border-radius: 1.6rem; background: rgba(0,184,212,.08); border: .1rem solid var(--v0fd-border); }
.v0fd-step::before { counter-increment: v0fdstep; content: counter(v0fdstep); position: absolute; left: 1.1rem; top: 1.2rem; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; color: #001414; background: var(--v0fd-primary); font-weight: 900; }
.v0fd-review { display: flex; gap: 1rem; align-items: flex-start; }
.v0fd-avatar { flex: 0 0 4rem; width: 4rem; height: 4rem; border-radius: 50%; display: grid; place-items: center; color: #001414; background: linear-gradient(135deg, var(--v0fd-hot), var(--v0fd-primary)); font-weight: 900; }
.v0fd-payments { display: flex; flex-wrap: wrap; gap: .7rem; }
.v0fd-pay { padding: .8rem 1rem; border-radius: 1rem; background: rgba(255,255,255,.06); color: var(--v0fd-text); border: .1rem solid rgba(255,255,255,.1); font-weight: 800; }
.v0fd-footer { padding: 2rem 1.2rem 8.8rem; background: #050b0c; border-top: .1rem solid var(--v0fd-border); }
.v0fd-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; color: var(--v0fd-primary); }
.v0fd-footer-logo img { width: 3rem; height: 3rem; border-radius: .8rem; }
.v0fd-footer-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .6rem; margin: 1.2rem 0; }
.v0fd-footer-links a { padding: .8rem; border-radius: 1rem; background: rgba(255,255,255,.04); color: var(--v0fd-muted); }
.v0fd-footer-ctas { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; margin: 1.2rem 0; }
.v0fd-copy { color: #83aaa7; font-size: 1.2rem; }
.v0fd-bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: min(100%, 430px); height: 6.2rem; z-index: 1000; display: flex; justify-content: space-around; align-items: center; background: #071616; border-top: .1rem solid var(--v0fd-border); box-shadow: 0 -1rem 3rem rgba(0,0,0,.4); }
.v0fd-bottom-btn { position: relative; min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: var(--v0fd-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; border-radius: 1.6rem; cursor: pointer; transition: transform .18s ease, color .18s ease, background .18s ease; }
.v0fd-bottom-btn i, .v0fd-bottom-btn ion-icon, .v0fd-bottom-btn .material-icons, .v0fd-bottom-btn .v0fd-tabler { font-size: 2.4rem; line-height: 2.4rem; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; }
.v0fd-bottom-btn span { font-size: 1.05rem; font-weight: 800; }
.v0fd-bottom-btn:active { transform: scale(.9); }
.v0fd-bottom-btn.v0fd-current { color: var(--v0fd-primary); background: rgba(64,224,208,.11); }
.v0fd-badge { position: absolute; top: .35rem; right: 1rem; min-width: 1.6rem; height: 1.6rem; padding: 0 .4rem; border-radius: 999px; display: grid; place-items: center; background: var(--v0fd-hot); color: #111; font-size: 1rem; font-weight: 900; }
.v0fd-two-tone { color: var(--v0fd-primary); text-shadow: .14rem .14rem 0 var(--v0fd-secondary); }
.v0fd-sr-only { position: absolute; width: .1rem; height: .1rem; padding: 0; margin: -.1rem; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.v0fd-breadcrumb { display: flex; flex-wrap: wrap; gap: .7rem; color: var(--v0fd-muted); font-size: 1.3rem; margin-bottom: 1rem; }
.v0fd-faq details { border: .1rem solid rgba(64,224,208,.16); background: rgba(255,255,255,.04); border-radius: 1.4rem; padding: 1rem; margin-bottom: .8rem; }
.v0fd-faq summary { cursor: pointer; color: var(--v0fd-primary); font-weight: 900; min-height: 3rem; }
.v0fd-alert { padding: 1rem 1.2rem; border-radius: 1.4rem; background: rgba(255,207,90,.11); color: #ffe49b; border: .1rem solid rgba(255,207,90,.25); }
.v0fd-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; font-size: 1.3rem; }
.v0fd-table th, .v0fd-table td { padding: .9rem .7rem; border-bottom: .1rem solid rgba(255,255,255,.08); text-align: left; }
.v0fd-table th { color: var(--v0fd-primary); background: rgba(64,224,208,.08); }
@media (min-width: 769px) {
  body { background: #020707; }
  .v0fd-page { border-left: .1rem solid rgba(64,224,208,.12); border-right: .1rem solid rgba(64,224,208,.12); }
  .v0fd-bottom-nav { display: none; }
  .v0fd-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}
@media (max-width: 360px) {
  .v0fd-topbar { padding: .7rem .8rem; }
  .v0fd-btn-primary, .v0fd-btn-ghost { padding: 0 .8rem; font-size: 1.25rem; }
  .v0fd-game-grid { gap: .65rem; }
  .v0fd-game img { width: 4.8rem; height: 4.8rem; }
}
