/* tk68 theme stylesheet */
/* CSS class prefix: vde9- */
/* Color palette: #FF6347 (primary) | #0C0C0C (background) */

:root{
  --vde9-primary:#FF6347;
  --vde9-primary-dark:#e0533a;
  --vde9-primary-light:#ff8266;
  --vde9-bg:#0C0C0C;
  --vde9-bg-soft:#141414;
  --vde9-bg-soft2:#181818;
  --vde9-card:#1a1a1a;
  --vde9-card-hover:#232323;
  --vde9-border:#2a2a2a;
  --vde9-border-light:#3a3a3a;
  --vde9-text:#f5f5f5;
  --vde9-text-muted:#a8a8a8;
  --vde9-text-dim:#777;
  --vde9-accent:#FFB347;
  --vde9-gold:#FFD700;
  --vde9-success:#2ecc71;
  --vde9-info:#3498db;
  --vde9-danger:#e74c3c;
  --vde9-radius:12px;
  --vde9-radius-sm:8px;
  --vde9-radius-lg:18px;
  --vde9-shadow:0 4px 16px rgba(0,0,0,0.45);
  --vde9-shadow-lg:0 8px 30px rgba(0,0,0,0.55);
  --vde9-shadow-glow:0 0 22px rgba(255,99,71,0.35);
  --vde9-header-h:58px;
  --vde9-bottomnav-h:64px;
  --vde9-transition:all .25s ease;
}

*{box-sizing:border-box;margin:0;padding:0}
html{font-size:62.5%;scroll-behavior:smooth}
body{
  font-family:'Noto Sans Bengali','Segoe UI',system-ui,-apple-system,sans-serif;
  background:var(--vde9-bg);
  color:var(--vde9-text);
  line-height:1.5rem;
  font-size:1.4rem;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  min-height:100vh;
}
img{max-width:100%;display:block}
a{color:var(--vde9-primary);text-decoration:none;transition:var(--vde9-transition)}
a:hover{color:var(--vde9-primary-light)}
ul,ol{list-style:none}

/* ---------- Layout helpers ---------- */
.vde9-container{width:100%;max-width:430px;margin:0 auto;padding:0 1.2rem;position:relative}
.vde9-wrapper{padding:1.4rem 0}
.vde9-section{padding:2rem 0;border-bottom:1px solid var(--vde9-border)}
.vde9-section:last-child{border-bottom:none}
.vde9-hidden{display:none !important}

/* ---------- Header ---------- */
.vde9-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--vde9-header-h);
  background:linear-gradient(90deg,#0a0a0a 0%,#1a1010 100%);
  border-bottom:1px solid var(--vde9-border);
  box-shadow:0 2px 10px rgba(0,0,0,0.6);
}
.vde9-header-inner{
  max-width:430px;margin:0 auto;height:100%;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 1rem;
}
.vde9-logo{display:flex;align-items:center;gap:.6rem;cursor:pointer}
.vde9-logo-icon{width:28px;height:28px;border-radius:6px;object-fit:cover}
.vde9-logo-text{
  font-size:1.8rem;font-weight:800;color:var(--vde9-primary);
  letter-spacing:.5px;
}
.vde9-logo-text span{color:var(--vde9-text)}
.vde9-header-actions{display:flex;align-items:center;gap:.6rem}
.vde9-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  padding:.6rem 1.2rem;border:none;border-radius:var(--vde9-radius-sm);
  font-size:1.3rem;font-weight:700;cursor:pointer;
  transition:var(--vde9-transition);min-height:40px;font-family:inherit;
}
.vde9-btn-primary{background:var(--vde9-primary);color:#fff}
.vde9-btn-primary:hover{background:var(--vde9-primary-dark);color:#fff;transform:translateY(-1px)}
.vde9-btn-outline{background:transparent;color:var(--vde9-primary);border:1.5px solid var(--vde9-primary)}
.vde9-btn-outline:hover{background:var(--vde9-primary);color:#fff}
.vde9-btn-gold{background:var(--vde9-gold);color:#1a1a1a}
.vde9-btn-gold:hover{background:#e6c300;transform:translateY(-1px)}
.vde9-btn-block{width:100%;padding:.9rem 1rem;font-size:1.5rem;min-height:48px}
.vde9-btn-lg{padding:1.1rem 2rem;font-size:1.6rem;width:100%;min-height:54px}

.vde9-menu-toggle{
  background:transparent;border:none;color:var(--vde9-text);
  font-size:2.2rem;cursor:pointer;padding:0 .4rem;
  display:flex;align-items:center;min-width:40px;min-height:40px;
}

/* ---------- Mobile menu drawer ---------- */
.vde9-mobile-menu{
  position:fixed;top:0;right:-100%;width:80%;max-width:320px;
  height:100vh;background:var(--vde9-bg-soft);z-index:9999;
  transition:right .3s ease;padding:1.5rem 1.2rem;
  overflow-y:auto;box-shadow:var(--vde9-shadow-lg);
}
.vde9-mobile-menu.vde9-open{right:0}
.vde9-mobile-menu-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:9998;
  opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.vde9-mobile-menu-overlay.vde9-open{opacity:1;pointer-events:auto}
.vde9-menu-close{
  position:absolute;top:1rem;right:1rem;background:transparent;
  border:none;color:var(--vde9-text);font-size:2.4rem;cursor:pointer;
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
}
.vde9-menu-title{
  font-size:1.8rem;font-weight:800;color:var(--vde9-primary);
  margin-bottom:1.2rem;padding-bottom:1rem;border-bottom:1px solid var(--vde9-border);
}
.vde9-menu-list li{margin-bottom:.6rem}
.vde9-menu-list a{
  display:flex;align-items:center;gap:.8rem;padding:1rem 1rem;
  background:var(--vde9-card);border-radius:var(--vde9-radius-sm);
  color:var(--vde9-text);font-size:1.4rem;font-weight:600;
}
.vde9-menu-list a:hover{background:var(--vde9-card-hover);color:var(--vde9-primary)}
.vde9-menu-list a i,.vde9-menu-list a .material-icons-outlined{font-size:1.8rem;color:var(--vde9-primary)}
.vde9-menu-promo{margin-top:1.5rem;display:flex;flex-direction:column;gap:.8rem}

/* ---------- Main content spacing ---------- */
.vde9-main{padding-top:var(--vde9-header-h);padding-bottom:calc(var(--vde9-bottomnav-h) + 20px)}
@media (max-width:768px){
  .vde9-main{padding-bottom:calc(var(--vde9-bottomnav-h) + 20px)}
}

/* ---------- Hero / Carousel ---------- */
.vde9-hero{position:relative;margin-top:.8rem;border-radius:var(--vde9-radius-lg);overflow:hidden;box-shadow:var(--vde9-shadow)}
.vde9-carousel{position:relative;width:100%;height:200px;overflow:hidden;border-radius:var(--vde9-radius-lg)}
.vde9-carousel-track{display:flex;height:100%;transition:transform .5s ease}
.vde9-carousel-slide{
  min-width:100%;height:100%;position:relative;cursor:pointer;
}
.vde9-carousel-slide img{width:100%;height:100%;object-fit:cover}
.vde9-carousel-slide::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,0.55) 100%);
}
.vde9-carousel-caption{
  position:absolute;left:1.2rem;bottom:1rem;z-index:2;color:#fff;
}
.vde9-carousel-caption h2{font-size:1.8rem;font-weight:800;margin-bottom:.3rem;text-shadow:0 2px 6px rgba(0,0,0,0.7)}
.vde9-carousel-caption p{font-size:1.2rem;color:#f5f5f5;text-shadow:0 2px 6px rgba(0,0,0,0.7)}
.vde9-carousel-dots{
  position:absolute;bottom:.8rem;right:1rem;display:flex;gap:.4rem;z-index:3;
}
.vde9-carousel-dot{
  width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.4);
  border:none;cursor:pointer;transition:var(--vde9-transition);
}
.vde9-carousel-dot.vde9-active{background:var(--vde9-primary);width:22px;border-radius:4px}
.vde9-carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:3;
  background:rgba(0,0,0,0.45);color:#fff;border:none;width:32px;height:32px;
  border-radius:50%;cursor:pointer;font-size:1.6rem;display:flex;align-items:center;justify-content:center;
}
.vde9-carousel-arrow:hover{background:var(--vde9-primary)}
.vde9-carousel-arrow.vde9-prev{left:.6rem}
.vde9-carousel-arrow.vde9-next{right:.6rem}

/* ---------- Section heading ---------- */
.vde9-section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.2rem}
.vde9-section-title{
  font-size:1.9rem;font-weight:800;color:var(--vde9-text);
  display:flex;align-items:center;gap:.6rem;
}
.vde9-section-title::before{
  content:"";display:inline-block;width:4px;height:1.8rem;
  background:var(--vde9-primary);border-radius:2px;
}
.vde9-section-title .material-icons-outlined,.vde9-section-title i{color:var(--vde9-primary);font-size:2rem}
.vde9-section-link{font-size:1.2rem;color:var(--vde9-primary);font-weight:600}
.vde9-section-sub{font-size:1.3rem;color:var(--vde9-text-muted);margin-top:.3rem}

/* ---------- H1 hero text ---------- */
.vde9-h1-wrap{padding:1.6rem 0 1rem;text-align:center}
.vde9-h1{
  font-size:2.4rem;font-weight:900;color:var(--vde9-text);
  line-height:1.3;margin-bottom:.6rem;
}
.vde9-h1 span{color:var(--vde9-primary)}
.vde9-h1-sub{font-size:1.3rem;color:var(--vde9-text-muted)}

/* ---------- Category tabs (visual only) ---------- */
.vde9-cat-tabs{display:flex;gap:.6rem;overflow-x:auto;padding:.4rem 0 1rem;scrollbar-width:none}
.vde9-cat-tabs::-webkit-scrollbar{display:none}
.vde9-cat-tab{
  padding:.6rem 1.2rem;background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:20px;font-size:1.2rem;font-weight:700;color:var(--vde9-text-muted);
  white-space:nowrap;cursor:pointer;transition:var(--vde9-transition);
}
.vde9-cat-tab.vde9-active{background:var(--vde9-primary);color:#fff;border-color:var(--vde9-primary)}

/* ---------- Game grid ---------- */
.vde9-game-section{margin-bottom:2rem}
.vde9-game-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;
}
@media (min-width:380px){.vde9-game-grid{grid-template-columns:repeat(4,1fr);gap:.7rem}}
.vde9-game-card{
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius-sm);overflow:hidden;cursor:pointer;
  transition:var(--vde9-transition);position:relative;
}
.vde9-game-card:hover{
  border-color:var(--vde9-primary);transform:translateY(-3px);
  box-shadow:var(--vde9-shadow-glow);
}
.vde9-game-thumb{
  width:100%;aspect-ratio:1;overflow:hidden;background:#000;
}
.vde9-game-thumb img{width:100%;height:100%;object-fit:cover}
.vde9-game-name{
  padding:.5rem .3rem;font-size:1.1rem;color:var(--vde9-text);
  text-align:center;font-weight:600;line-height:1.25;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.vde9-game-badge{
  position:absolute;top:.3rem;left:.3rem;background:var(--vde9-primary);
  color:#fff;font-size:.9rem;font-weight:700;padding:.1rem .4rem;
  border-radius:4px;line-height:1;
}
.vde9-game-badge.vde9-hot{background:var(--vde9-danger)}
.vde9-game-badge.vde9-new{background:var(--vde9-success)}

/* ---------- Info / content modules ---------- */
.vde9-card{
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius);padding:1.4rem;margin-bottom:1.2rem;
}
.vde9-card-title{
  font-size:1.7rem;font-weight:800;color:var(--vde9-primary);
  margin-bottom:.8rem;display:flex;align-items:center;gap:.6rem;
}
.vde9-card-title i,.vde9-card-title .material-icons-outlined{font-size:2rem}
.vde9-card p{color:var(--vde9-text);font-size:1.3rem;line-height:1.6;margin-bottom:.8rem}
.vde9-card p:last-child{margin-bottom:0}
.vde9-card ul{margin:.6rem 0 .6rem 1.2rem}
.vde9-card ul li{list-style:disc;color:var(--vde9-text);font-size:1.3rem;line-height:1.6;margin-bottom:.4rem}
.vde9-card strong{color:var(--vde9-accent)}

/* ---------- Features grid ---------- */
.vde9-features{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem}
.vde9-feature{
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius);padding:1.2rem;text-align:center;
}
.vde9-feature-icon{
  width:44px;height:44px;border-radius:50%;background:rgba(255,99,71,0.15);
  display:flex;align-items:center;justify-content:center;margin:0 auto .6rem;
  color:var(--vde9-primary);font-size:2rem;
}
.vde9-feature h3{font-size:1.3rem;font-weight:700;color:var(--vde9-text);margin-bottom:.3rem}
.vde9-feature p{font-size:1.1rem;color:var(--vde9-text-muted);line-height:1.4}

/* ---------- FAQ ---------- */
.vde9-faq-item{
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius-sm);margin-bottom:.8rem;overflow:hidden;
}
.vde9-faq-q{
  padding:1rem 1.2rem;font-size:1.3rem;font-weight:700;color:var(--vde9-text);
  cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:.6rem;
}
.vde9-faq-q i,.vde9-faq-q .material-icons-outlined{color:var(--vde9-primary);font-size:1.6rem;transition:transform .25s}
.vde9-faq-item.vde9-open .vde9-faq-q i,
.vde9-faq-item.vde9-open .vde9-faq-q .material-icons-outlined{transform:rotate(180deg)}
.vde9-faq-a{padding:0 1.2rem 1rem;font-size:1.2rem;color:var(--vde9-text-muted);line-height:1.6;display:none}
.vde9-faq-item.vde9-open .vde9-faq-a{display:block}

/* ---------- Testimonials ---------- */
.vde9-testimonials{display:grid;grid-template-columns:1fr;gap:.8rem}
.vde9-testimonial{
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius);padding:1.2rem;
}
.vde9-testimonial-head{display:flex;align-items:center;gap:.8rem;margin-bottom:.6rem}
.vde9-testimonial-avatar{
  width:40px;height:40px;border-radius:50%;background:var(--vde9-primary);
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:1.4rem;
}
.vde9-testimonial-name{font-size:1.3rem;font-weight:700;color:var(--vde9-text)}
.vde9-testimonial-stars{color:var(--vde9-gold);font-size:1.1rem}
.vde9-testimonial p{font-size:1.2rem;color:var(--vde9-text-muted);line-height:1.5}

/* ---------- Payment methods ---------- */
.vde9-pay-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.6rem}
.vde9-pay-item{
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius-sm);padding:1rem .6rem;text-align:center;
}
.vde9-pay-icon{font-size:2rem;color:var(--vde9-primary);margin-bottom:.4rem}
.vde9-pay-name{font-size:1.1rem;color:var(--vde9-text);font-weight:600}

/* ---------- Winners showcase ---------- */
.vde9-winner-list{display:flex;flex-direction:column;gap:.6rem}
.vde9-winner{
  display:flex;align-items:center;justify-content:space-between;
  background:var(--vde9-card);border:1px solid var(--vde9-border);
  border-radius:var(--vde9-radius-sm);padding:.8rem 1rem;
}
.vde9-winner-left{display:flex;align-items:center;gap:.8rem}
.vde9-winner-avatar{
  width:34px;height:34px;border-radius:50%;background:var(--vde9-card-hover);
  display:flex;align-items:center;justify-content:center;color:var(--vde9-accent);font-size:1.4rem;
}
.vde9-winner-name{font-size:1.2rem;color:var(--vde9-text);font-weight:600}
.vde9-winner-game{font-size:1rem;color:var(--vde9-text-muted)}
.vde9-winner-amount{font-size:1.3rem;color:var(--vde9-success);font-weight:800}

/* ---------- App download CTA ---------- */
.vde9-app-cta{
  background:linear-gradient(135deg,#1a1010 0%,#2a1410 100%);
  border:1px solid var(--vde9-primary);border-radius:var(--vde9-radius);
  padding:1.6rem;text-align:center;
}
.vde9-app-cta h3{font-size:1.8rem;font-weight:800;color:var(--vde9-primary);margin-bottom:.4rem}
.vde9-app-cta p{font-size:1.2rem;color:var(--vde9-text-muted);margin-bottom:1rem}
.vde9-app-cta-buttons{display:flex;flex-direction:column;gap:.6rem}

/* ---------- Promo inline ---------- */
.vde9-promo-inline{
  background:linear-gradient(90deg,rgba(255,99,71,0.12),rgba(255,179,71,0.08));
  border:1px dashed var(--vde9-primary);border-radius:var(--vde9-radius-sm);
  padding:1rem 1.2rem;margin:1rem 0;text-align:center;
}
.vde9-promo-inline p{font-size:1.3rem;color:var(--vde9-text);font-weight:600}
.vde9-promo-inline a{font-weight:800;color:var(--vde9-primary);text-decoration:underline}

/* ---------- Footer ---------- */
.vde9-footer{
  background:var(--vde9-bg-soft);border-top:1px solid var(--vde9-border);
  padding:2rem 0 1.5rem;margin-top:1rem;
}
.vde9-footer-brand{
  font-size:1.8rem;font-weight:800;color:var(--vde9-primary);margin-bottom:.6rem;
}
.vde9-footer-desc{font-size:1.2rem;color:var(--vde9-text-muted);line-height:1.6;margin-bottom:1.2rem}
.vde9-footer-promos{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1.2rem}
.vde9-footer-promos .vde9-btn{flex:1;min-width:120px}
.vde9-footer-links{
  display:grid;grid-template-columns:repeat(2,1fr);gap:.6rem;margin-bottom:1.2rem;
}
.vde9-footer-links a{
  font-size:1.2rem;color:var(--vde9-text-muted);padding:.5rem .2rem;
  border-bottom:1px solid var(--vde9-border);
}
.vde9-footer-links a:hover{color:var(--vde9-primary)}
.vde9-footer-copy{
  font-size:1.1rem;color:var(--vde9-text-dim);text-align:center;
  padding-top:1rem;border-top:1px solid var(--vde9-border);
}

/* ---------- Mobile bottom nav ---------- */
.vde9-bottomnav{
  position:fixed;bottom:0;left:0;right:0;z-index:1000;
  height:var(--vde9-bottomnav-h);
  background:linear-gradient(180deg,#141414 0%,#0a0a0a 100%);
  border-top:1px solid var(--vde9-border);
  display:flex;justify-content:space-around;align-items:center;
  box-shadow:0 -2px 12px rgba(0,0,0,0.6);
}
.vde9-bottomnav-item{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:.2rem;background:transparent;border:none;color:var(--vde9-text-muted);
  cursor:pointer;padding:.4rem .2rem;min-width:60px;min-height:60px;
  transition:var(--vde9-transition);font-family:inherit;
}
.vde9-bottomnav-item:hover{color:var(--vde9-primary)}
.vde9-bottomnav-item.vde9-active{color:var(--vde9-primary)}
.vde9-bottomnav-item.vde9-active .vde9-bottomnav-icon{
  transform:translateY(-2px) scale(1.12);
}
.vde9-bottomnav-icon{font-size:2.2rem;line-height:1;transition:var(--vde9-transition)}
.vde9-bottomnav-label{font-size:1rem;line-height:1;font-weight:600}
.vde9-bottomnav-item:active{transform:scale(.94)}
.vde9-bottomnav-badge{
  position:absolute;top:.3rem;right:50%;transform:translateX(18px);
  background:var(--vde9-danger);color:#fff;font-size:.8rem;font-weight:700;
  border-radius:10px;padding:0 .4rem;min-width:16px;height:16px;
  display:flex;align-items:center;justify-content:center;line-height:1;
}
.vde9-bottomnav-item{position:relative}

/* Hide bottom nav and show desktop nav */
.vde9-desktop-nav{display:none}
@media (min-width:769px){.vde9-bottomnav{display:none}.vde9-main{padding-bottom:20px}.vde9-menu-toggle{display:none}.vde9-container{max-width:760px}.vde9-desktop-nav{display:flex;gap:1rem;align-items:center}.vde9-desktop-nav a{font-size:1.3rem;color:var(--vde9-text);font-weight:600;padding:.4rem .2rem}.vde9-desktop-nav a:hover{color:var(--vde9-primary)}}

/* ---------- Utility ---------- */
.vde9-text-center{text-align:center}.vde9-mt-1{margin-top:1rem}.vde9-mt-2{margin-top:2rem}.vde9-mb-1{margin-bottom:1rem}.vde9-py-1{padding-top:1rem;padding-bottom:1rem}.vde9-py-2{padding-top:2rem;padding-bottom:2rem}.vde9-divider{height:1px;background:var(--vde9-border);margin:1.5rem 0;border:none}

/* ---------- Animations ---------- */
@keyframes vde9-pulse{0%,100%{box-shadow:0 0 0 0 rgba(255,99,71,0.5)}50%{box-shadow:0 0 0 8px rgba(255,99,71,0)}}
.vde9-pulse{animation:vde9-pulse 2s infinite}
@keyframes vde9-fade-up{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.vde9-fade-up{animation:vde9-fade-up .5s ease both}
