/* =========================================================
   kt10.click - Common stylesheet (prefix: w08c2-)
   Palette: #FF6347 (tomato, primary) + #3A3A3A (dark bg)
   Mobile-first, max-width 430px.
   ========================================================= */

:root {
  --w08c2-primary: #FF6347;
  --w08c2-primary-dark: #d94b32;
  --w08c2-bg: #3A3A3A;
  --w08c2-bg-soft: #2b2b2b;
  --w08c2-card: #4a4a4a;
  --w08c2-text: #ffffff;
  --w08c2-text-soft: #e6e6e6;
  --w08c2-muted: #b8b8b8;
  --w08c2-accent: #ffd34e;
  --w08c2-border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Tahoma, sans-serif;
  background: var(--w08c2-bg);
  color: var(--w08c2-text);
  line-height: 1.5rem;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

a { color: var(--w08c2-accent); text-decoration: none; }
a:hover { color: var(--w08c2-primary); }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.w08c2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #2b2b2b 0%, #3A3A3A 100%);
  border-bottom: 2px solid var(--w08c2-primary);
  max-width: 430px;
}
.w08c2-brand { display: flex; align-items: center; gap: 0.6rem; }
.w08c2-logo { width: 30px; height: 30px; border-radius: 6px; }
.w08c2-brand-name { font-size: 1.9rem; font-weight: 800; color: var(--w08c2-primary); letter-spacing: 0.5px; }
.w08c2-brand-name span { color: var(--w08c2-text); }

.w08c2-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.w08c2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; border: none; cursor: pointer;
  font-weight: 700; font-size: 1.3rem; border-radius: 24px;
  padding: 0.6rem 1.2rem; min-height: 36px; transition: transform .15s, background .15s;
  font-family: inherit;
}
.w08c2-btn:active { transform: scale(0.95); }
.w08c2-btn-login { background: #ffffff; color: var(--w08c2-primary); }
.w08c2-btn-register { background: var(--w08c2-primary); color: #fff; }
.w08c2-btn-register:hover { background: var(--w08c2-primary-dark); color:#fff; }

.w08c2-menu-btn {
  background: transparent; border: none; color: #fff; font-size: 2.2rem; cursor: pointer;
  min-width: 44px; min-height: 44px; border-radius: 8px;
}
.w08c2-menu-btn:hover { background: rgba(255,255,255,0.08); }

/* ---------- Navigation dropdown ---------- */
.w08c2-nav-wrap { position: relative; }
.w08c2-nav-menu {
  display: none;
  position: absolute; top: calc(100% + 4px); right: 0;
  background: #2b2b2b; min-width: 220px;
  border: 1px solid var(--w08c2-border); border-radius: 10px;
  padding: 0.5rem; z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.w08c2-nav-open { display: block; }
.w08c2-nav-menu a {
  display: block; color: var(--w08c2-text-soft);
  padding: 0.85rem 1rem; border-radius: 6px; font-size: 1.4rem;
}
.w08c2-nav-menu a:hover { background: var(--w08c2-primary); color:#fff; }
.w08c2-nav-menu .w08c2-nav-divider { height:1px; background: var(--w08c2-border); margin: 0.3rem 0; }

/* ---------- Main layout ---------- */
.w08c2-main { padding-bottom: 90px; }
.w08c2-section { padding: 2rem 1.2rem; }
.w08c2-section h2 {
  font-size: 2.1rem; color: var(--w08c2-primary); margin-bottom: 0.8rem; font-weight: 800;
  border-left: 4px solid var(--w08c2-accent); padding-left: 0.8rem;
}
.w08c2-section h3 { font-size: 1.7rem; color: var(--w08c2-accent); margin: 1rem 0 0.5rem; font-weight: 700; }
.w08c2-section p { margin-bottom: 0.9rem; color: var(--w08c2-text-soft); }

/* ---------- Hero / Carousel ---------- */
.w08c2-carousel { position: relative; overflow: hidden; border-radius: 0 0 16px 16px; }
.w08c2-slide {
  display: none; position: relative; cursor: pointer;
}
.w08c2-slide-active { display: block; }
.w08c2-slide img { width: 100%; height: 200px; object-fit: cover; }
.w08c2-slide-cap {
  position: absolute; left: 1rem; bottom: 1.2rem; right: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; font-weight: 700; font-size: 1.5rem;
}
.w08c2-dots { display: flex; gap: 0.5rem; justify-content: center; padding: 0.6rem; }
.w08c2-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; }
.w08c2-dot-active { background: var(--w08c2-primary); }

/* ---------- Hero CTA banner ---------- */
.w08c2-hero-cta { text-align: center; padding: 2rem 1.2rem; background: linear-gradient(135deg, #d94b32, #FF6347); }
.w08c2-hero-cta h1 { font-size: 2.4rem; color: #fff; margin-bottom: 0.5rem; }
.w08c2-hero-cta p { color: #fff; margin-bottom: 1.2rem; }
.w08c2-btn-cta {
  background:#fff; color: var(--w08c2-primary); font-weight:800;
  padding: 1rem 2rem; border-radius: 30px; font-size: 1.5rem;
  display:inline-block;
}

/* ---------- Game grid ---------- */
.w08c2-cat-title {
  display:flex; align-items:center; gap:0.6rem;
  margin: 1.6rem 0 0.8rem; font-size: 1.8rem; color: var(--w08c2-accent); font-weight:800;
}
.w08c2-cat-title i { color: var(--w08c2-primary); }
.w08c2-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.w08c2-game-card {
  background: var(--w08c2-card); border-radius: 10px; overflow: hidden;
  cursor: pointer; border: 1px solid var(--w08c2-border); transition: transform .15s;
}
.w08c2-game-card:active { transform: scale(0.96); }
.w08c2-game-card img { width: 100%; height: 88px; object-fit: cover; }
.w08c2-game-name {
  font-size: 1.15rem; padding: 0.4rem 0.3rem; text-align: center;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Cards / generic ---------- */
.w08c2-card {
  background: var(--w08c2-card); border-radius: 12px; padding: 1.2rem;
  margin-bottom: 1rem; border: 1px solid var(--w08c2-border);
}
.w08c2-card-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:0.8rem; }
.w08c2-mini { background: var(--w08c2-bg-soft); border-radius:10px; padding:1rem; text-align:center; }
.w08c2-mini i { font-size: 2.6rem; color: var(--w08c2-primary); }
.w08c2-mini h4 { font-size:1.4rem; margin-top:0.4rem; color:#fff; }
.w08c2-mini p { font-size:1.2rem; color: var(--w08c2-muted); margin-top:0.3rem; }

/* ---------- Testimonials ---------- */
.w08c2-testi { background: var(--w08c2-card); border-left:3px solid var(--w08c2-accent); border-radius:8px; padding:1rem; margin-bottom:0.8rem; }
.w08c2-testi b { color: var(--w08c2-primary); }

/* ---------- Winners list ---------- */
.w08c2-winner { display:flex; justify-content:space-between; padding:0.6rem 0; border-bottom:1px solid var(--w08c2-border); font-size:1.3rem; }
.w08c2-winner:last-child { border-bottom:none; }
.w08c2-winner .amt { color: var(--w08c2-accent); font-weight:700; }

/* ---------- Payment ---------- */
.w08c2-pay { display:flex; flex-wrap:wrap; gap:0.6rem; }
.w08c2-pay span {
  background:#fff; color:#3A3A3A; border-radius:6px; padding:0.5rem 0.9rem;
  font-weight:700; font-size:1.2rem;
}

/* ---------- Promo inline links ---------- */
.w08c2-promo-link {
  color: var(--w08c2-accent); font-weight: 700; cursor: pointer; text-decoration: underline;
}

/* ---------- Footer ---------- */
.w08c2-footer {
  background: #2b2b2b; color: var(--w08c2-text-soft);
  padding: 2rem 1.2rem 8rem; border-top: 3px solid var(--w08c2-primary);
}
.w08c2-footer h4 { color: var(--w08c2-primary); margin-bottom: 0.6rem; font-size:1.6rem; }
.w08c2-footer p { color: var(--w08c2-muted); font-size:1.3rem; margin-bottom:0.8rem; }
.w08c2-footer-links { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1rem; }
.w08c2-footer-links a { color: var(--w08c2-text-soft); font-size:1.3rem; }
.w08c2-footer-promo { display:flex; flex-wrap:wrap; gap:0.5rem; margin: 0.8rem 0; }
.w08c2-footer-promo button, .w08c2-footer-promo a {
  background: var(--w08c2-primary); color:#fff; border:none; border-radius:20px;
  padding:0.5rem 1rem; font-size:1.25rem; cursor:pointer; font-weight:700;
}
.w08c2-copyright { margin-top:1.2rem; font-size:1.2rem; color: var(--w08c2-muted); border-top:1px solid var(--w08c2-border); padding-top:1rem; }

/* ---------- Mobile bottom navigation ---------- */
.w08c2-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(180deg, #2b2b2b, #1d1d1d);
  border-top: 2px solid var(--w08c2-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px; z-index: 1000;
}
.w08c2-bottom-nav a, .w08c2-bottom-nav button {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: none; color: #fff; cursor: pointer;
  min-width: 60px; min-height: 60px; gap: 2px; text-decoration: none;
  font-family: inherit; transition: color .15s, transform .15s;
}
.w08c2-bottom-nav a:active, .w08c2-bottom-nav button:active { transform: scale(0.92); }
.w08c2-bottom-nav .w08c2-bn-icon { font-size: 24px; color: #fff; }
.w08c2-bottom-nav .material-icons.w08c2-bn-icon { font-size: 24px; }
.w08c2-bottom-nav .w08c2-bn-label { font-size: 10px; color: var(--w08c2-text-soft); }
.w08c2-bottom-nav a:hover .w08c2-bn-icon,
.w08c2-bottom-nav button:hover .w08c2-bn-icon { color: var(--w08c2-primary); }
.w08c2-bottom-nav .w08c2-bn-active .w08c2-bn-icon { color: var(--w08c2-primary); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .w08c2-bottom-nav { display: none; }
  .w08c2-main { padding-bottom: 2rem; }
  .w08c2-footer { padding-bottom: 2rem; }
}
