/* ============================================================
 * vc99.click - common stylesheet
 * Prefix: wbd93-
 * Palette: #FFC0CB | #0A0A0A | #FFB6C1 | #FF1493 | #95A5A6
 * Mobile-first, max-width: 430px. Root font 62.5%.
 * ============================================================ */
:root {
  --wbd93-primary: #FF1493;
  --wbd93-secondary: #FFC0CB;
  --wbd93-soft: #FFB6C1;
  --wbd93-dark: #0A0A0A;
  --wbd93-muted: #95A5A6;
  --wbd93-bg: #0A0A0A;
  --wbd93-card: #1a1a1a;
  --wbd93-text: #FFE9F0;
  --wbd93-accent: #FF1493;
  --wbd93-border: #2a2230;
  --wbd93-radius: 12px;
  --wbd93-shadow: 0 6px 22px rgba(255, 20, 147, 0.18);
}
* { 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", "Segoe UI", Roboto, sans-serif;
  background: var(--wbd93-bg);
  color: var(--wbd93-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--wbd93-secondary); text-decoration: none; }

/* ---------- Layout ---------- */
.wbd93-wrapper { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.wbd93-container { padding: 1.6rem 1.2rem; }
.wbd93-section { margin: 2.4rem 0; }

/* ---------- Header ---------- */
.wbd93-header {
  position: fixed; top: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto; z-index: 1000;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0a14 100%);
  border-bottom: 1px solid var(--wbd93-border);
  box-shadow: 0 3px 14px rgba(0,0,0,0.5);
}
.wbd93-header-row { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.2rem; gap: 0.8rem; }
.wbd93-logo { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 0; }
.wbd93-logo img { width: 28px; height: 28px; border-radius: 6px; }
.wbd93-logo-text { font-size: 1.7rem; font-weight: 800; color: var(--wbd93-secondary); letter-spacing: 0.5px; }
.wbd93-logo-text span { color: var(--wbd93-primary); }
.wbd93-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.wbd93-menu-btn { background: transparent; border: 0; color: var(--wbd93-secondary); font-size: 2.2rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* ---------- Buttons ---------- */
.wbd93-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 38px; padding: 0.6rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: 1.35rem; border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; text-decoration: none; }
.wbd93-btn:active { transform: scale(0.96); }
.wbd93-btn-login { background: transparent; color: var(--wbd93-secondary); border: 1.5px solid var(--wbd93-primary); }
.wbd93-btn-register { background: linear-gradient(135deg, #FF1493, #FFB6C1); color: #0A0A0A; box-shadow: var(--wbd93-shadow); }
.wbd93-btn-promo { background: linear-gradient(135deg, #FF1493, #FFC0CB); color: #0A0A0A; font-weight: 800; padding: 1rem 2rem; width: 100%; font-size: 1.6rem; }
.wbd93-text-link { color: var(--wbd93-primary); font-weight: 700; text-decoration: underline; }

/* ---------- Mobile slide menu ---------- */
.wbd93-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998; opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.wbd93-overlay-show { opacity: 1; visibility: visible; }
.wbd93-mobile-menu { position: fixed; top: 0; right: -85%; width: 78%; max-width: 320px; height: 100vh; background: #120010; z-index: 9999; padding: 2rem 1.6rem; overflow-y: auto; transition: right .3s ease; border-left: 1px solid var(--wbd93-border); }
.wbd93-menu-open { right: 0; }
.wbd93-menu-title { font-size: 1.8rem; font-weight: 800; color: var(--wbd93-secondary); margin-bottom: 1.2rem; border-bottom: 1px solid var(--wbd93-border); padding-bottom: 0.8rem; }
.wbd93-menu-list { list-style: none; }
.wbd93-menu-list li { margin: 0.4rem 0; }
.wbd93-menu-list a { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 0.8rem; border-radius: 8px; color: var(--wbd93-text); font-size: 1.45rem; }
.wbd93-menu-list a:active { background: rgba(255,20,147,0.15); }

/* ---------- Hero / Carousel ---------- */
.wbd93-main { padding-top: 64px; }
.wbd93-carousel { position: relative; border-radius: var(--wbd93-radius); overflow: hidden; margin: 1.2rem 0; box-shadow: var(--wbd93-shadow); }
.wbd93-slides { position: relative; }
.wbd93-slide { display: none; position: relative; cursor: pointer; }
.wbd93-slide img { width: 100%; height: 180px; object-fit: cover; }
.wbd93-slide-active { display: block; }
.wbd93-slide-caption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,0.85)); padding: 1.4rem 1rem 1rem; font-size: 1.4rem; font-weight: 600; }
.wbd93-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.wbd93-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 50%; border: 0; cursor: pointer; }
.wbd93-dot-active { background: var(--wbd93-primary); }

/* ---------- Headings ---------- */
.wbd93-h1 { font-size: 2.2rem; font-weight: 800; color: var(--wbd93-secondary); margin: 1.4rem 0 0.6rem; line-height: 1.4; }
.wbd93-h1 span { color: var(--wbd93-primary); }
.wbd93-h2 { font-size: 1.85rem; font-weight: 800; color: var(--wbd93-secondary); margin: 2.2rem 0 1rem; padding-left: 0.8rem; border-left: 4px solid var(--wbd93-primary); }
.wbd93-h3 { font-size: 1.55rem; font-weight: 700; color: var(--wbd93-soft); margin: 1.4rem 0 0.6rem; }
.wbd93-lead { color: var(--wbd93-muted); font-size: 1.4rem; margin-bottom: 1rem; }
.wbd93-p { margin: 0.8rem 0; color: var(--wbd93-text); }

/* ---------- Stats ---------- */
.wbd93-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin: 1.4rem 0; }
.wbd93-stat { background: var(--wbd93-card); border: 1px solid var(--wbd93-border); border-radius: 10px; padding: 1rem 0.6rem; text-align: center; }
.wbd93-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--wbd93-primary); }
.wbd93-stat-label { font-size: 1.1rem; color: var(--wbd93-muted); }

/* ---------- Game grid ---------- */
.wbd93-section-head { display: flex; align-items: center; justify-content: space-between; margin: 1.8rem 0 1rem; }
.wbd93-section-head h2 { font-size: 1.7rem; font-weight: 800; color: var(--wbd93-secondary); }
.wbd93-section-head i { color: var(--wbd93-primary); margin-right: 0.5rem; }
.wbd93-game-group { margin: 1.4rem 0; }
.wbd93-game-group-title { display: flex; align-items: center; gap: 0.6rem; font-size: 1.5rem; font-weight: 700; color: var(--wbd93-soft); margin-bottom: 0.8rem; }
.wbd93-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.wbd93-card { background: var(--wbd93-card); border: 1px solid var(--wbd93-border); border-radius: 10px; overflow: hidden; cursor: pointer; transition: transform .15s ease, border-color .15s ease; display: block; text-align: center; }
.wbd93-card:active { transform: scale(0.96); border-color: var(--wbd93-primary); }
.wbd93-card img { width: 100%; height: 78px; object-fit: cover; background: #050505; }
.wbd93-card-name { font-size: 1.1rem; padding: 0.4rem 0.3rem; color: var(--wbd93-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Info / Feature blocks ---------- */
.wbd93-card-block { background: var(--wbd93-card); border: 1px solid var(--wbd93-border); border-radius: 12px; padding: 1.4rem; margin: 1rem 0; }
.wbd93-feature-list { list-style: none; }
.wbd93-feature-list li { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.6rem 0; font-size: 1.35rem; }
.wbd93-feature-list i { color: var(--wbd93-primary); margin-top: 0.3rem; }

/* ---------- Testimonials ---------- */
.wbd93-testi { background: var(--wbd93-card); border-left: 3px solid var(--wbd93-primary); border-radius: 8px; padding: 1rem 1.2rem; margin: 0.8rem 0; }
.wbd93-testi-text { font-size: 1.35rem; color: var(--wbd93-text); }
.wbd93-testi-author { font-size: 1.2rem; color: var(--wbd93-muted); margin-top: 0.4rem; }

/* ---------- Winners ---------- */
.wbd93-winner-row { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0.8rem; background: var(--wbd93-card); border-radius: 8px; margin: 0.4rem 0; font-size: 1.3rem; }
.wbd93-winner-amount { color: var(--wbd93-primary); font-weight: 800; }

/* ---------- Payment ---------- */
.wbd93-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.8rem 0; }
.wbd93-pay { background: var(--wbd93-card); border: 1px solid var(--wbd93-border); padding: 0.6rem 1rem; border-radius: 999px; font-size: 1.2rem; color: var(--wbd93-soft); display: inline-flex; align-items: center; gap: 0.4rem; }

/* ---------- CTA banner ---------- */
.wbd93-cta { background: linear-gradient(135deg, #1a0014, #FF1493); border-radius: 14px; padding: 1.6rem; text-align: center; margin: 1.6rem 0; box-shadow: var(--wbd93-shadow); }
.wbd93-cta h3 { color: #fff; margin-bottom: 0.6rem; }
.wbd93-cta p { color: var(--wbd93-secondary); font-size: 1.3rem; margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.wbd93-footer { background: #050008; border-top: 1px solid var(--wbd93-border); padding: 2rem 1.2rem 5.5rem; margin-top: 2rem; }
.wbd93-footer h4 { font-size: 1.4rem; color: var(--wbd93-secondary); margin: 1rem 0 0.6rem; }
.wbd93-footer p { font-size: 1.25rem; color: var(--wbd93-muted); }
.wbd93-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; margin: 0.8rem 0; }
.wbd93-footer-links a { color: var(--wbd93-soft); font-size: 1.25rem; text-decoration: underline; }
.wbd93-footer-promo { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.8rem 0; }
.wbd93-copy { text-align: center; font-size: 1.15rem; color: var(--wbd93-muted); margin-top: 1.2rem; border-top: 1px solid var(--wbd93-border); padding-top: 1rem; }

/* ---------- Bottom navigation ---------- */
.wbd93-bottomnav { position: fixed; bottom: 0; left: 0; right: 0; max-width: 430px; margin: 0 auto; height: 62px; background: linear-gradient(180deg, #140010, #050008); border-top: 1px solid var(--wbd93-border); display: flex; justify-content: space-around; align-items: stretch; z-index: 1000; }
.wbd93-navbtn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--wbd93-muted); font-size: 1.05rem; gap: 2px; cursor: pointer; min-width: 60px; min-height: 60px; padding: 4px 2px; text-decoration: none; transition: color .15s ease, transform .15s ease; }
.wbd93-navbtn .material-icons, .wbd93-navbtn ion-icon, .wbd93-navbtn i { font-size: 22px; }
.wbd93-navbtn:active { transform: scale(0.92); }
.wbd93-navbtn-current, .wbd93-navbtn:active { color: var(--wbd93-primary); }
.wbd93-navbtn-center { position: relative; color: var(--wbd93-secondary); }
.wbd93-navbtn-center .wbd93-nav-icon { background: linear-gradient(135deg, #FF1493, #FFB6C1); color: #0A0A0A; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: -22px; box-shadow: var(--wbd93-shadow); }

/* ---------- Desktop / responsive ---------- */
@media (min-width: 769px) {
  .wbd93-bottomnav { display: none; }
  body { max-width: 768px; }
  .wbd93-header, .wbd93-footer { max-width: 768px; }
  .wbd93-grid { grid-template-columns: repeat(5, 1fr); }
  .wbd93-footer { padding-bottom: 2rem; }
}
@media (min-width: 431px) and (max-width: 768px) { body { max-width: 430px; } }
@media (max-width: 768px) { .wbd93-main { padding-bottom: 80px; } body { padding-bottom: 0; } }

/* ---------- Utility ---------- */
.wbd93-hidden { display: none !important; }
.wbd93-center { text-align: center; }
.wbd93-mt { margin-top: 1.2rem; }
