/* ============================================================
   111 bet - mobile canvas styles
   Class prefix: v2c9-  /  CSS variable prefix: --v2c9-
   Canvas: 320-430px phone-first, centered on wide screens.
   Palette: #0C0C0C / #FF6347 / #E65100 / #EE82EE / #B03060
   ============================================================ */

:root{
  --v2c9-bg:#0C0C0C;
  --v2c9-bg-soft:#140d0d;
  --v2c9-bg-elev:#1c1413;
  --v2c9-card:#1f1614;
  --v2c9-card-2:#271a18;
  --v2c9-tomato:#FF6347;
  --v2c9-orange:#E65100;
  --v2c9-violet:#EE82EE;
  --v2c9-magenta:#B03060;
  --v2c9-text:#fbf2ec;
  --v2c9-muted:#b7a399;
  --v2c9-faint:#7d6c62;
  --v2c9-line:rgba(255,228,210,.10);
  --v2c9-line-2:rgba(255,228,210,.18);
  --v2c9-gold:#ffce7a;
  --v2c9-grad-flame:linear-gradient(135deg,#FF6347 0%,#E65100 60%,#B03060 100%);
  --v2c9-grad-night:linear-gradient(160deg,#1c1413 0%,#0C0C0C 70%);
  --v2c9-grad-violet:linear-gradient(135deg,#EE82EE 0%,#B03060 100%);
  --v2c9-shadow-soft:0 6px 22px rgba(0,0,0,.42);
  --v2c9-shadow-tomato:0 10px 26px rgba(255,99,71,.30);
  --v2c9-radius:14px;
  --v2c9-radius-sm:10px;
  --v2c9-radius-lg:20px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{background:#000}
body{
  max-width:430px;
  margin:0 auto;
  background:var(--v2c9-bg);
  background-image:
    radial-gradient(420px 220px at 80% -40px,rgba(238,130,238,.10),transparent 70%),
    radial-gradient(360px 200px at -40px 280px,rgba(255,99,71,.10),transparent 70%);
  color:var(--v2c9-text);
  font-family:"Hind Siliguri","Noto Sans Bengali","Baloo Da 2",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-size:15px;
  line-height:1.65;
  -webkit-text-size-adjust:100%;
  min-height:100vh;
  padding-bottom:84px;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul,ol{list-style:none}

/* ---------------- Top navigation ---------------- */
.v2c9-header{
  position:sticky;top:0;z-index:60;
  background:rgba(12,12,12,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--v2c9-line);
}
.v2c9-header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:8px;
  padding:9px 12px;
}
.v2c9-brand{
  display:flex;align-items:center;gap:9px;min-width:0;
}
.v2c9-logo{
  width:34px;height:34px;border-radius:10px;
  background:var(--v2c9-grad-flame);
  display:grid;place-items:center;
  font-weight:800;color:#fff;font-size:15px;letter-spacing:.5px;
  box-shadow:var(--v2c9-shadow-tomato);
}
.v2c9-brand-name{
  font-weight:800;font-size:16px;line-height:1.1;letter-spacing:.3px;
}
.v2c9-brand-name b{color:var(--v2c9-tomato)}
.v2c9-brand-tag{
  font-size:10.5px;color:var(--v2c9-muted);font-weight:500;letter-spacing:.4px;
}
.v2c9-head-actions{display:flex;align-items:center;gap:7px}
.v2c9-btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:38px;padding:0 14px;border-radius:999px;
  font-weight:700;font-size:13.5px;
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease;
  white-space:nowrap;
}
.v2c9-btn:active{transform:translateY(1px) scale(.98)}
.v2c9-btn-primary{
  background:var(--v2c9-grad-flame);color:#fff;
  box-shadow:var(--v2c9-shadow-tomato);
}
.v2c9-btn-ghost{
  background:rgba(255,255,255,.06);color:var(--v2c9-text);
  border:1px solid var(--v2c9-line-2);
}
.v2c9-icon-btn{
  width:38px;height:38px;border-radius:11px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.05);
  border:1px solid var(--v2c9-line);
}
.v2c9-icon-btn svg{width:20px;height:20px}

/* ---------------- Side drawer ---------------- */
.v2c9-drawer-mask{
  position:fixed;inset:0;z-index:80;
  background:rgba(0,0,0,.6);
  opacity:0;visibility:hidden;
  transition:opacity .25s ease, visibility .25s;
}
.v2c9-drawer-mask.is-open{opacity:1;visibility:visible}
.v2c9-drawer{
  position:fixed;top:0;left:0;bottom:0;z-index:90;
  width:84%;max-width:320px;
  background:var(--v2c9-bg-soft);
  background-image:linear-gradient(180deg,rgba(238,130,238,.06),transparent 38%);
  transform:translateX(-105%);
  transition:transform .28s cubic-bezier(.22,.61,.36,1);
  display:flex;flex-direction:column;
  border-right:1px solid var(--v2c9-line);
}
.v2c9-drawer.is-open{transform:translateX(0)}
.v2c9-drawer-head{
  padding:18px 16px 12px;
  display:flex;align-items:center;gap:10px;
  border-bottom:1px solid var(--v2c9-line);
}
.v2c9-drawer-head .v2c9-logo{width:38px;height:38px;font-size:16px}
.v2c9-drawer-head h3{font-size:16px;font-weight:800}
.v2c9-drawer-head p{font-size:11px;color:var(--v2c9-muted)}
.v2c9-drawer-body{padding:8px 10px 16px;overflow-y:auto;flex:1}
.v2c9-drawer-section-title{
  font-size:11px;letter-spacing:1.2px;text-transform:uppercase;
  color:var(--v2c9-faint);margin:14px 8px 6px;font-weight:700;
}
.v2c9-drawer-link{
  display:flex;align-items:center;gap:11px;
  padding:11px 10px;border-radius:11px;
  color:var(--v2c9-text);font-weight:600;font-size:14px;
  transition:background .14s ease, transform .1s;
}
.v2c9-drawer-link:active{transform:scale(.985)}
.v2c9-drawer-link:hover{background:rgba(255,99,71,.10)}
.v2c9-drawer-link .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--v2c9-tomato);flex:none;
  box-shadow:0 0 0 3px rgba(255,99,71,.18);
}
.v2c9-drawer-link.is-current{background:rgba(238,130,238,.14);color:#fff}
.v2c9-drawer-link.is-current .dot{background:var(--v2c9-violet)}
.v2c9-drawer-foot{
  padding:12px 14px;border-top:1px solid var(--v2c9-line);
  display:flex;gap:8px;
}
.v2c9-drawer-foot .v2c9-btn{flex:1;min-height:42px}

/* ---------------- Hero / carousel ---------------- */
.v2c9-main{padding:0 0 8px}
.v2c9-hero{
  margin:12px 11px 6px;
  border-radius:var(--v2c9-radius-lg);
  overflow:hidden;
  position:relative;
  box-shadow:var(--v2c9-shadow-soft);
  border:1px solid var(--v2c9-line);
}
.v2c9-carousel{position:relative}
.v2c9-carousel-track{
  display:flex;scroll-snap-type:x mandatory;
  overflow-x:auto;scroll-behavior:smooth;
  -ms-overflow-style:none;scrollbar-width:none;
}
.v2c9-carousel-track::-webkit-scrollbar{display:none}
.v2c9-slide{
  flex:0 0 100%;scroll-snap-align:center;
  position:relative;cursor:pointer;
}
.v2c9-slide img{width:100%;height:170px;object-fit:cover}
.v2c9-slide-overlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:12px 14px 13px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.78));
}
.v2c9-slide-title{
  font-size:16px;font-weight:800;color:#fff;line-height:1.25;
  text-shadow:0 1px 6px rgba(0,0,0,.6);
}
.v2c9-slide-sub{
  font-size:11.5px;color:#ffe6dd;margin-top:3px;
}
.v2c9-slide-cta{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:9px;
  padding:7px 14px;border-radius:999px;
  background:var(--v2c9-grad-flame);
  font-size:12.5px;font-weight:700;color:#fff;
  box-shadow:var(--v2c9-shadow-tomato);
}
.v2c9-carousel-dots{
  position:absolute;bottom:10px;right:12px;
  display:flex;gap:6px;z-index:3;
}
.v2c9-carousel-dots button{
  width:7px;height:7px;border-radius:50%;
  background:rgba(255,255,255,.45);
  transition:all .2s;
}
.v2c9-carousel-dots button.is-active{
  background:var(--v2c9-tomato);width:20px;border-radius:5px;
}

/* ---------------- Quick stats ---------------- */
.v2c9-quick{
  margin:8px 11px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:7px;
}
.v2c9-quick-item{
  background:var(--v2c9-card);
  border:1px solid var(--v2c9-line);
  border-radius:12px;
  padding:9px 6px;text-align:center;
}
.v2c9-quick-num{
  font-size:15px;font-weight:800;color:var(--v2c9-tomato);line-height:1.1;
}
.v2c9-quick-lbl{font-size:10px;color:var(--v2c9-muted);margin-top:2px;letter-spacing:.3px}

/* ---------------- Section head ---------------- */
.v2c9-section{margin:18px 11px 6px}
.v2c9-section-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:10px;gap:8px;
}
.v2c9-section-title{
  display:flex;align-items:center;gap:9px;
  font-size:17px;font-weight:800;letter-spacing:.2px;
}
.v2c9-section-title .pill{
  width:6px;height:22px;border-radius:4px;
  background:var(--v2c9-grad-flame);
}
.v2c9-section-title.violet .pill{background:var(--v2c9-grad-violet)}
.v2c9-section-title.gold .pill{background:linear-gradient(180deg,#ffce7a,#E65100)}
.v2c9-section-more{
  font-size:12px;color:var(--v2c9-tomato);font-weight:700;
}
.v2c9-section-desc{font-size:12.5px;color:var(--v2c9-muted);margin:-4px 0 10px}

/* ---------------- Game grid ---------------- */
.v2c9-games{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px 7px;
}
@media (min-width:360px){
  .v2c9-games{grid-template-columns:repeat(4,1fr)}
}
@media (min-width:400px){
  .v2c9-games{grid-template-columns:repeat(5,1fr);gap:9px 8px}
}
.v2c9-game{
  display:flex;flex-direction:column;align-items:center;
  gap:4px;padding:6px 4px 7px;
  border-radius:12px;
  background:var(--v2c9-card);
  border:1px solid var(--v2c9-line);
  transition:transform .14s, box-shadow .14s, border-color .14s;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.v2c9-game:active{transform:scale(.95)}
.v2c9-game:hover{border-color:rgba(255,99,71,.45);box-shadow:0 4px 14px rgba(255,99,71,.16)}
.v2c9-game-img{
  width:100%;aspect-ratio:1/1;border-radius:9px;
  object-fit:cover;
  background:linear-gradient(135deg,#241614,#37201c);
}
.v2c9-game-name{
  font-size:11px;font-weight:600;text-align:center;line-height:1.2;
  color:var(--v2c9-text);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  min-height:1.4em;
}
.v2c9-game.hot::after,.v2c9-game.new::after{
  content:attr(data-tag);
  position:absolute;
}
.v2c9-game-wrap{position:relative;width:100%}
.v2c9-game-tag{
  position:absolute;top:4px;left:4px;
  font-size:9px;font-weight:800;letter-spacing:.4px;
  padding:2px 5px;border-radius:5px;
  background:var(--v2c9-grad-flame);color:#fff;
}

/* horizontal variant */
.v2c9-row-scroll{
  display:flex;gap:8px;overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:2px 1px 6px;
  -ms-overflow-style:none;scrollbar-width:none;
}
.v2c9-row-scroll::-webkit-scrollbar{display:none}
.v2c9-row-scroll .v2c9-game{
  flex:0 0 84px;scroll-snap-align:start;
}

/* ---------------- Promo banner mid ---------------- */
.v2c9-promo-strip{
  margin:14px 11px;
  border-radius:var(--v2c9-radius);
  padding:14px 14px;
  background:linear-gradient(135deg,rgba(238,130,238,.16),rgba(176,48,96,.18));
  border:1px solid rgba(238,130,238,.32);
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.v2c9-promo-strip h4{font-size:15px;font-weight:800;color:#fff}
.v2c9-promo-strip p{font-size:11.5px;color:#f3d6e6;margin-top:2px}

/* ---------------- Info / FAQ / content ---------------- */
.v2c9-content{
  margin:14px 11px;
  background:var(--v2c9-card);
  border:1px solid var(--v2c9-line);
  border-radius:var(--v2c9-radius);
  padding:14px 14px 16px;
}
.v2c9-content h2{
  font-size:16.5px;font-weight:800;margin:14px 0 8px;color:#fff;
  display:flex;align-items:center;gap:8px;
}
.v2c9-content h2:first-child{margin-top:0}
.v2c9-content h2 .bar{
  width:5px;height:18px;border-radius:3px;background:var(--v2c9-grad-violet);
}
.v2c9-content p{font-size:13.5px;color:var(--v2c9-muted);margin-bottom:8px}
.v2c9-content p a{color:var(--v2c9-tomato);font-weight:700;border-bottom:1px dashed rgba(255,99,71,.45)}
.v2c9-content strong{color:#fff}
.v2c9-content ul{margin:4px 0 10px;padding-left:2px}
.v2c9-content ul li{
  position:relative;padding:5px 4px 5px 18px;font-size:13px;color:var(--v2c9-muted);
  border-bottom:1px dashed var(--v2c9-line);
}
.v2c9-content ul li:last-child{border-bottom:none}
.v2c9-content ul li::before{
  content:"";position:absolute;left:4px;top:13px;
  width:7px;height:7px;border-radius:50%;
  background:var(--v2c9-tomato);
}
.v2c9-content ul li a{color:var(--v2c9-tomato);font-weight:700}

/* feature cards grid */
.v2c9-feature-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:9px;
  margin:6px 11px;
}
.v2c9-feature{
  background:var(--v2c9-card);
  border:1px solid var(--v2c9-line);
  border-radius:12px;
  padding:12px 11px;
  display:flex;flex-direction:column;gap:6px;
}
.v2c9-feature .ico{
  width:36px;height:36px;border-radius:10px;
  display:grid;place-items:center;
  background:var(--v2c9-grad-flame);
}
.v2c9-feature.violet .ico{background:var(--v2c9-grad-violet)}
.v2c9-feature.gold .ico{background:linear-gradient(135deg,#ffce7a,#E65100)}
.v2c9-feature .ico svg{width:20px;height:20px;color:#fff}
.v2c9-feature h3{font-size:13.5px;font-weight:800;color:#fff}
.v2c9-feature p{font-size:11.8px;color:var(--v2c9-muted);line-height:1.5}

/* FAQ */
.v2c9-faq-item{
  border-bottom:1px solid var(--v2c9-line);
  padding:10px 0;
}
.v2c9-faq-item:last-child{border-bottom:none}
.v2c9-faq-q{
  font-size:13.5px;font-weight:700;color:#fff;
  display:flex;gap:8px;
}
.v2c9-faq-q::before{
  content:"Q";flex:none;
  width:22px;height:22px;border-radius:6px;
  background:var(--v2c9-grad-violet);
  color:#fff;font-size:11px;font-weight:800;
  display:grid;place-items:center;
}
.v2c9-faq-a{
  font-size:13px;color:var(--v2c9-muted);
  margin-top:6px;padding-left:30px;
}

/* ---------------- Extended footer ---------------- */
.v2c9-extended{
  margin:18px 11px 6px;
  background:var(--v2c9-bg-soft);
  border:1px solid var(--v2c9-line);
  border-radius:var(--v2c9-radius);
  padding:14px;
}
.v2c9-ext-brand{
  display:flex;align-items:center;gap:10px;margin-bottom:10px;
}
.v2c9-ext-brand .v2c9-logo{width:36px;height:36px}
.v2c9-ext-brand h3{font-size:15px;font-weight:800}
.v2c9-ext-brand p{font-size:11px;color:var(--v2c9-muted)}
.v2c9-ext-text{font-size:12.8px;color:var(--v2c9-muted);line-height:1.7;margin-bottom:12px}
.v2c9-ext-promos{
  display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:14px;
}
.v2c9-ext-promo{
  display:flex;align-items:center;gap:8px;
  padding:10px;border-radius:11px;
  background:linear-gradient(135deg,rgba(255,99,71,.16),rgba(176,48,96,.18));
  border:1px solid rgba(255,99,71,.28);
  font-size:12.5px;font-weight:700;color:#fff;
}
.v2c9-ext-promo.violet{
  background:linear-gradient(135deg,rgba(238,130,238,.16),rgba(176,48,96,.18));
  border-color:rgba(238,130,238,.3);
}
.v2c9-ext-promo .ico{
  width:26px;height:26px;border-radius:8px;flex:none;
  display:grid;place-items:center;
  background:rgba(0,0,0,.32);
}
.v2c9-ext-promo .ico svg{width:15px;height:15px;color:#fff}
.v2c9-ext-dir-title{
  font-size:11px;letter-spacing:1px;text-transform:uppercase;
  color:var(--v2c9-faint);font-weight:700;margin:6px 0 8px;
}
.v2c9-ext-dir{
  display:grid;grid-template-columns:repeat(2,1fr);gap:6px 8px;
}
.v2c9-ext-dir a{
  font-size:12.5px;color:var(--v2c9-text);font-weight:600;
  padding:7px 9px;border-radius:8px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--v2c9-line);
  transition:background .14s;
}
.v2c9-ext-dir a:active{transform:scale(.97)}
.v2c9-ext-dir a:hover{background:rgba(255,99,71,.10)}
.v2c9-ext-dir a span{color:var(--v2c9-tomato);font-weight:800;margin-right:5px}
.v2c9-ext-disclaimer{
  margin-top:14px;padding:10px 11px;
  border-left:3px solid var(--v2c9-violet);
  background:rgba(238,130,238,.06);
  border-radius:0 8px 8px 0;
  font-size:11.5px;color:var(--v2c9-muted);line-height:1.6;
}

/* ---------------- Footer copyright ---------------- */
.v2c9-footer-copy{
  margin:10px 11px 4px;
  padding:12px 12px;
  text-align:center;
  font-size:11.5px;color:var(--v2c9-faint);
  border-top:1px solid var(--v2c9-line);
}
.v2c9-footer-copy b{color:var(--v2c9-muted)}

/* ---------------- Bottom nav (lifted center) ---------------- */
.v2c9-bottom{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  max-width:430px;margin:0 auto;
  background:rgba(15,9,9,.96);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-top:1px solid var(--v2c9-line-2);
  box-shadow:0 -8px 24px rgba(0,0,0,.5);
  padding:6px 6px calc(6px + env(safe-area-inset-bottom));
  display:grid;grid-template-columns:repeat(5,1fr);align-items:end;
}
.v2c9-bottom-item{
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  gap:3px;padding:4px 2px;min-height:50px;
  position:relative;
  font-size:10px;font-weight:600;color:var(--v2c9-muted);
  border-radius:12px;
  transition:color .14s, transform .1s;
}
.v2c9-bottom-item:active{transform:scale(.92)}
.v2c9-bottom-item .ico{
  width:30px;height:30px;display:grid;place-items:center;
  color:var(--v2c9-muted);
  transition:color .14s, transform .14s;
}
.v2c9-bottom-item .ico svg{width:22px;height:22px}
.v2c9-bottom-item.is-current{color:#fff}
.v2c9-bottom-item.is-current .ico{
  color:var(--v2c9-tomato);transform:translateY(-2px);
}
.v2c9-bottom-item.is-current::before{
  content:"";position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  width:24px;height:3px;border-radius:0 0 4px 4px;background:var(--v2c9-tomato);
}
/* lifted center promo */
.v2c9-bottom-item.is-lifted{
  transform:translateY(-12px);
  background:var(--v2c9-grad-flame);
  color:#fff;
  border-radius:50%;
  width:56px;height:56px;
  min-height:0;
  margin:0 auto;
  box-shadow:0 8px 22px rgba(255,99,71,.45);
  border:3px solid #1c1413;
  display:grid;place-items:center;gap:0;padding:0;
}
.v2c9-bottom-item.is-lifted .ico{color:#fff;width:24px;height:24px}
.v2c9-bottom-item.is-lifted .ico svg{width:24px;height:24px}
.v2c9-bottom-item.is-lifted .lbl{
  position:absolute;bottom:-16px;font-size:9.5px;font-weight:700;color:#fff;
  white-space:nowrap;
}
.v2c9-bottom-item .lbl{letter-spacing:.2px}

/* ---------------- Utilities ---------------- */
.v2c9-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.v2c9-hide{display:none}
