/* 111bd theme stylesheet - Core Basefiles */
/* All custom classes use the vd55- prefix. Comments in English. */
:root{
  --vd55-primary:#FF1493;--vd55-accent:#FF4500;--vd55-rose:#BC8F8F;
  --vd55-brown:#A0522D;--vd55-bg:#1C2833;--vd55-bg-2:#243447;--vd55-bg-3:#2C3E50;
  --vd55-text:#F5F5F5;--vd55-muted:#C0C0C0;--vd55-dim:#9AA8B8;
  --vd55-border:rgba(255,20,147,.25);--vd55-card:rgba(36,52,71,.85);
  --vd55-shadow:0 4px 18px rgba(0,0,0,.45);--vd55-r:10px;--vd55-r-lg:14px;
  --vd55-hh:56px;--vd55-bh:62px;--vd55-maxw:430px;
  --vd55-grad:linear-gradient(135deg,#FF1493 0%,#FF4500 100%);
  --vd55-card-grad:linear-gradient(160deg,rgba(255,20,147,.12) 0%,rgba(28,40,51,.92) 60%);
}
*{box-sizing:border-box;margin:0;padding:0}
html{font-size:62.5%;-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{font-family:"Hind Siliguri","Noto Sans Bengali",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--vd55-bg);color:var(--vd55-text);line-height:1.5;font-size:1.5rem;min-height:100vh;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:var(--vd55-primary);text-decoration:none}
a:hover{text-decoration:underline}
.vd55-container{width:100%;max-width:var(--vd55-maxw);margin:0 auto;padding:0 12px}
.vd55-section{padding:18px 0}
.vd55-section-title{font-size:1.8rem;font-weight:700;color:var(--vd55-text);margin-bottom:10px;display:flex;align-items:center;gap:8px}
.vd55-section-title::before{content:"";width:4px;height:20px;background:var(--vd55-grad);border-radius:2px}
/* Header */
.vd55-header{position:fixed;top:0;left:0;right:0;height:var(--vd55-hh);background:linear-gradient(90deg,#1C2833,#2C3E50);border-bottom:1px solid var(--vd55-border);box-shadow:var(--vd55-shadow);z-index:1000;display:flex;align-items:center}
.vd55-header-inner{width:100%;max-width:var(--vd55-maxw);margin:0 auto;padding:0 12px;display:flex;align-items:center;justify-content:space-between;gap:8px}
.vd55-logo{display:flex;align-items:center;gap:8px;color:var(--vd55-text);text-decoration:none;flex-shrink:0}
.vd55-logo img{width:28px;height:28px;border-radius:6px}
.vd55-logo-text{font-size:1.7rem;font-weight:700;letter-spacing:.4px;background:var(--vd55-grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.vd55-header-actions{display:flex;align-items:center;gap:8px}
.vd55-menu-btn{width:36px;height:36px;border:1px solid var(--vd55-border);background:rgba(255,20,147,.08);color:var(--vd55-text);border-radius:8px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;font-size:18px}
.vd55-menu-btn:hover{background:rgba(255,20,147,.18)}
/* Buttons */
.vd55-btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:36px;padding:0 14px;border:none;border-radius:8px;font-size:1.3rem;font-weight:600;cursor:pointer;text-decoration:none;transition:transform .15s,box-shadow .15s,background .15s;font-family:inherit;line-height:1}
.vd55-btn-primary{background:var(--vd55-grad);color:#fff;box-shadow:0 3px 10px rgba(255,20,147,.35)}
.vd55-btn-primary:hover{transform:translateY(-1px);text-decoration:none;box-shadow:0 5px 14px rgba(255,20,147,.5)}
.vd55-btn-ghost{background:rgba(255,255,255,.06);color:var(--vd55-text);border:1px solid var(--vd55-border)}
.vd55-btn-ghost:hover{background:rgba(255,20,147,.18);text-decoration:none}
.vd55-btn-lg{min-height:44px;padding:0 22px;font-size:1.5rem;border-radius:10px}
.vd55-btn-block{width:100%}
.vd55-text-link{color:var(--vd55-primary);font-weight:600;cursor:pointer}
.vd55-text-link:hover{text-decoration:underline}
/* Mobile menu drawer */
.vd55-menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:9998;opacity:0;visibility:hidden;transition:opacity .2s}
.vd55-menu-overlay.vd55-open{opacity:1;visibility:visible}
.vd55-mobile-menu{position:fixed;top:0;right:0;width:78%;max-width:320px;height:100%;background:var(--vd55-bg-2);z-index:9999;transform:translateX(100%);transition:transform .25s;padding:18px 16px;overflow-y:auto;box-shadow:-6px 0 22px rgba(0,0,0,.5)}
.vd55-mobile-menu.vd55-open{transform:translateX(0)}
.vd55-menu-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid var(--vd55-border)}
.vd55-menu-close{width:34px;height:34px;border:none;background:transparent;color:var(--vd55-text);font-size:20px;cursor:pointer}
.vd55-menu-list{list-style:none;display:flex;flex-direction:column;gap:4px}
.vd55-menu-list a,.vd55-menu-list button{display:flex;align-items:center;gap:10px;padding:11px 12px;color:var(--vd55-text);text-decoration:none;border-radius:8px;font-size:1.4rem;background:transparent;border:none;cursor:pointer;width:100%;text-align:left;font-family:inherit}
.vd55-menu-list a:hover,.vd55-menu-list button:hover{background:rgba(255,20,147,.15);text-decoration:none}
.vd55-menu-list .material-symbols-outlined,.vd55-menu-list i{font-size:20px;color:var(--vd55-primary);width:22px;text-align:center}
/* Main content */
.vd55-main{padding-top:calc(var(--vd55-hh) + 8px);padding-bottom:16px;min-height:80vh}
/* Hero / Carousel */
.vd55-hero{margin:8px 0 6px}
.vd55-carousel{position:relative;border-radius:var(--vd55-r-lg);overflow:hidden;box-shadow:var(--vd55-shadow)}
.vd55-carousel-track{display:flex;scroll-snap-type:x mandatory;overflow-x:auto;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.vd55-carousel-track::-webkit-scrollbar{display:none}
.vd55-carousel-slide{flex:0 0 100%;scroll-snap-align:start;position:relative;cursor:pointer}
.vd55-carousel-slide img{width:100%;height:180px;object-fit:cover}
.vd55-carousel-cap{position:absolute;left:14px;bottom:14px;right:14px;background:linear-gradient(transparent,rgba(0,0,0,.7));color:#fff;padding:8px 10px;border-radius:8px}
.vd55-carousel-cap span{display:block;font-size:1.3rem;color:#ffd6ec;font-weight:600}
.vd55-carousel-cap strong{display:block;font-size:1.6rem;font-weight:700}
.vd55-carousel-dots{position:absolute;bottom:8px;left:50%;transform:translateX(-50%);display:flex;gap:6px;z-index:2}
.vd55-carousel-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.45);border:none;cursor:pointer;padding:0}
.vd55-carousel-dot.vd55-active{background:var(--vd55-primary);width:16px;border-radius:4px}
/* Promo banner */
.vd55-promo-banner{background:var(--vd55-grad);color:#fff;border-radius:var(--vd55-r-lg);padding:14px 16px;margin:10px 0;display:flex;align-items:center;justify-content:space-between;gap:10px;box-shadow:0 4px 14px rgba(255,20,147,.35)}
.vd55-promo-banner-text{flex:1}
.vd55-promo-banner-text strong{display:block;font-size:1.6rem;font-weight:700}
.vd55-promo-banner-text span{display:block;font-size:1.2rem;opacity:.92}
.vd55-promo-banner .vd55-btn{background:#fff;color:var(--vd55-primary);flex-shrink:0}
/* Category + game grid */
.vd55-category{margin:16px 0}
.vd55-cat-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.vd55-cat-head h2{font-size:1.7rem;font-weight:700;color:var(--vd55-text);display:flex;align-items:center;gap:8px}
.vd55-cat-head h2 i,.vd55-cat-head h2 .material-symbols-outlined{color:var(--vd55-primary);font-size:22px}
.vd55-cat-more{font-size:1.3rem;color:var(--vd55-primary);cursor:pointer;font-weight:600}
.vd55-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.vd55-card{background:var(--vd55-card-grad);border:1px solid var(--vd55-border);border-radius:var(--vd55-r);overflow:hidden;cursor:pointer;transition:transform .15s,box-shadow .15s;display:flex;flex-direction:column}
.vd55-card:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(255,20,147,.3);border-color:var(--vd55-primary)}
.vd55-card-img{width:100%;aspect-ratio:1/1;object-fit:cover;background:#0e1620}
.vd55-card-body{padding:6px 8px;text-align:center}
.vd55-card-name{font-size:1.15rem;color:var(--vd55-text);font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.3}
.vd55-card-tag{display:inline-block;margin-top:4px;font-size:1rem;color:var(--vd55-accent);background:rgba(255,69,0,.12);padding:1px 6px;border-radius:4px}
/* Info / content blocks */
.vd55-info-card{background:var(--vd55-card);border:1px solid var(--vd55-border);border-radius:var(--vd55-r-lg);padding:16px;margin:10px 0}
.vd55-info-card h3{font-size:1.6rem;color:var(--vd55-primary);margin-bottom:8px;display:flex;align-items:center;gap:8px}
.vd55-info-card p{font-size:1.35rem;color:var(--vd55-muted);margin-bottom:8px;line-height:1.55}
.vd55-info-card ul{list-style:none;padding:0;margin:6px 0}
.vd55-info-card li{font-size:1.3rem;color:var(--vd55-muted);padding:6px 0 6px 22px;position:relative;line-height:1.5}
.vd55-info-card li::before{content:"\f00c";font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;left:0;top:6px;color:var(--vd55-primary);font-size:1.1rem}
/* H1 + lead */
.vd55-h1{font-size:2.1rem;font-weight:800;color:var(--vd55-text);margin:10px 0;line-height:1.35}
.vd55-h1 .vd55-h1-accent{background:var(--vd55-grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.vd55-lead{font-size:1.4rem;color:var(--vd55-muted);margin-bottom:12px;line-height:1.6}
/* Testimonials */
.vd55-testimonials{display:grid;grid-template-columns:1fr;gap:10px}
.vd55-testimonial{background:var(--vd55-card);border-left:3px solid var(--vd55-primary);border-radius:8px;padding:12px 14px}
.vd55-testimonial p{font-size:1.3rem;color:var(--vd55-muted);font-style:italic;margin-bottom:8px;line-height:1.55}
.vd55-testimonial-author{font-size:1.2rem;color:var(--vd55-dim);display:flex;align-items:center;gap:6px}
/* Payments */
.vd55-payments{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-top:8px}
.vd55-payment{background:rgba(255,255,255,.06);border:1px solid var(--vd55-border);border-radius:8px;padding:10px 4px;text-align:center;font-size:1.1rem;color:var(--vd55-muted)}
.vd55-payment i,.vd55-payment .material-symbols-outlined{font-size:22px;color:var(--vd55-primary);display:block;margin-bottom:4px}
/* Winners */
.vd55-winners{background:var(--vd55-card);border:1px solid var(--vd55-border);border-radius:var(--vd55-r-lg);padding:12px;margin:10px 0}
.vd55-winner{display:flex;align-items:center;justify-content:space-between;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.05);font-size:1.3rem}
.vd55-winner:last-child{border-bottom:none}
.vd55-winner-name{color:var(--vd55-text);font-weight:600}
.vd55-winner-game{color:var(--vd55-dim);font-size:1.15rem}
.vd55-winner-amount{color:#FFD700;font-weight:700}
/* App CTA */
.vd55-app-cta{background:linear-gradient(135deg,#A0522D,#FF4500);border-radius:var(--vd55-r-lg);padding:16px;margin:10px 0;color:#fff;display:flex;align-items:center;gap:14px;box-shadow:0 4px 14px rgba(160,82,45,.4)}
.vd55-app-cta-icon{font-size:40px;flex-shrink:0}
.vd55-app-cta-body{flex:1}
.vd55-app-cta-body strong{display:block;font-size:1.6rem;font-weight:700}
.vd55-app-cta-body span{display:block;font-size:1.2rem;opacity:.92;margin-top:2px}
.vd55-app-cta .vd55-btn{background:#fff;color:#A0522D;flex-shrink:0}
/* FAQ */
.vd55-faq-item{background:var(--vd55-card);border:1px solid var(--vd55-border);border-radius:8px;margin-bottom:8px;overflow:hidden}
.vd55-faq-q{width:100%;text-align:left;background:transparent;border:none;color:var(--vd55-text);font-size:1.35rem;font-weight:600;padding:12px 14px;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:8px;font-family:inherit}
.vd55-faq-icon{color:var(--vd55-primary);transition:transform .2s;flex-shrink:0}
.vd55-faq-item.vd55-open .vd55-faq-icon{transform:rotate(45deg)}
.vd55-faq-a{max-height:0;overflow:hidden;transition:max-height .25s;padding:0 14px;color:var(--vd55-muted);font-size:1.3rem;line-height:1.55}
.vd55-faq-item.vd55-open .vd55-faq-a{max-height:320px;padding:0 14px 12px}
/* Footer */
.vd55-footer{background:#141c25;border-top:1px solid var(--vd55-border);padding:20px 0 24px;margin-top:16px}
.vd55-footer-brand{font-size:1.5rem;font-weight:700;color:var(--vd55-primary);margin-bottom:8px}
.vd55-footer-desc{font-size:1.25rem;color:var(--vd55-dim);line-height:1.55;margin-bottom:12px}
.vd55-footer-links{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:14px}
.vd55-footer-links a{font-size:1.25rem;color:var(--vd55-muted);padding:6px 0;display:flex;align-items:center;gap:6px}
.vd55-footer-links a:hover{color:var(--vd55-primary)}
.vd55-footer-promos{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin:10px 0 14px}
.vd55-footer-copy{font-size:1.15rem;color:var(--vd55-dim);text-align:center;padding-top:12px;border-top:1px solid rgba(255,255,255,.06)}
/* Mobile bottom navigation */
.vd55-bottomnav{position:fixed;bottom:0;left:0;right:0;height:var(--vd55-bh);background:linear-gradient(180deg,#243447,#141c25);border-top:1px solid var(--vd55-border);box-shadow:0 -4px 14px rgba(0,0,0,.4);z-index:1000;display:flex;justify-content:space-around;align-items:center;padding:4px 0}
.vd55-bottomnav-btn{flex:1;min-width:60px;min-height:54px;background:transparent;border:none;color:var(--vd55-dim);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;cursor:pointer;font-family:inherit;position:relative;transition:color .15s,transform .15s;padding:0}
.vd55-bottomnav-btn i,.vd55-bottomnav-btn .material-symbols-outlined,.vd55-bottomnav-btn ion-icon{font-size:22px}
.vd55-bottomnav-label{font-size:1rem;line-height:1.1}
.vd55-bottomnav-btn:hover{color:var(--vd55-primary);transform:translateY(-1px)}
.vd55-bottomnav-btn.vd55-active{color:var(--vd55-primary)}
.vd55-bottomnav-btn.vd55-active::after{content:"";position:absolute;top:2px;width:22px;height:3px;border-radius:2px;background:var(--vd55-grad)}
.vd55-bottomnav-btn.vd55-promo{color:#FFD700}
.vd55-bottomnav-btn.vd55-promo i,.vd55-bottomnav-btn.vd55-promo .material-symbols-outlined{color:#FFD700}
/* Desktop */
@media (min-width:769px){
  .vd55-bottomnav{display:none}
  .vd55-header-inner,.vd55-container,.vd55-footer .vd55-container{max-width:960px}
  .vd55-grid{grid-template-columns:repeat(6,1fr)}
  .vd55-payments{grid-template-columns:repeat(8,1fr)}
  .vd55-carousel-slide img{height:320px}
}
/* Mobile bottom padding clearance */
@media (max-width:768px){
  .vd55-main{padding-bottom:calc(var(--vd55-bh) + 16px)}
  .vd55-footer{padding-bottom:calc(var(--vd55-bh) + 24px)}
}
/* Utility */
.vd55-text-center{text-align:center}
.vd55-mt-8{margin-top:8px}
