/**
 * 6777 bad apk - Core stylesheet
 * All custom classes use the "v9b9-" prefix.
 * Palette: #262626 (bg) | #E9ECEF (text) | #FFB3FF (accent)
 * Mobile-first, max-width 430px, rem units (root 62.5%).
 */

:root {
  --v9b9-bg: #262626;
  --v9b9-bg-2: #1c1c1c;
  --v9b9-bg-3: #333333;
  --v9b9-text: #E9ECEF;
  --v9b9-text-mute: #b8bcc4;
  --v9b9-accent: #FFB3FF;
  --v9b9-accent-2: #ff7ae6;
  --v9b9-gold: #FFD66E;
  --v9b9-danger: #ff5c7a;
  --v9b9-success: #4cd964;
  --v9b9-border: rgba(233, 236, 239, 0.12);
  --v9b9-radius: 1.2rem;
  --v9b9-radius-sm: 0.8rem;
  --v9b9-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --v9b9-header-h: 5.6rem;
  --v9b9-bottomnav-h: 6.2rem;
}

* { 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", system-ui, sans-serif;
  background: var(--v9b9-bg);
  color: var(--v9b9-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--v9b9-accent); text-decoration: none; }
a:hover, a:focus { color: var(--v9b9-accent-2); text-decoration: underline; }
img { max-width: 100%; display: block; }

.v9b9-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v9b9-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* ---------- Header ---------- */
.v9b9-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--v9b9-header-h);
  background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
  border-bottom: 1px solid var(--v9b9-border);
  z-index: 1000;
  display: flex; align-items: center;
}
.v9b9-header-inner {
  width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
}
.v9b9-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--v9b9-text); }
.v9b9-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.v9b9-logo .v9b9-logo-text { font-size: 1.5rem; font-weight: 700; color: var(--v9b9-accent); white-space: nowrap; }

.v9b9-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v9b9-menu-btn {
  background: transparent; border: 1px solid var(--v9b9-border);
  color: var(--v9b9-text); width: 3.6rem; height: 3.6rem;
  border-radius: 0.8rem; font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.v9b9-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.2rem; border: none; border-radius: 2rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer; min-height: 3.6rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v9b9-btn:active { transform: scale(0.96); }
.v9b9-btn-register { background: linear-gradient(135deg, var(--v9b9-accent), var(--v9b9-accent-2)); color: #1a1a1a; }
.v9b9-btn-login { background: transparent; color: var(--v9b9-text); border: 1px solid var(--v9b9-accent); }

/* ---------- Mobile menu (slide-down) ---------- */
.v9b9-mobile-menu {
  position: fixed; top: var(--v9b9-header-h); left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: var(--v9b9-bg-2); border-bottom: 1px solid var(--v9b9-border);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  z-index: 9999;
}
.v9b9-mobile-menu.v9b9-open { max-height: 60rem; }
.v9b9-mobile-menu-inner { padding: 1rem 1.2rem 1.6rem; }
.v9b9-mobile-menu a {
  display: block; padding: 1.1rem 1rem; border-radius: 0.8rem;
  color: var(--v9b9-text); font-size: 1.4rem; font-weight: 600;
  border-bottom: 1px solid var(--v9b9-border);
}
.v9b9-mobile-menu a:last-child { border-bottom: none; }
.v9b9-mobile-menu a i { color: var(--v9b9-accent); margin-right: 0.8rem; width: 2rem; text-align: center; }
.v9b9-mobile-menu a:hover { background: var(--v9b9-bg-3); text-decoration: none; }

/* ---------- Main ---------- */
.v9b9-main { padding-top: calc(var(--v9b9-header-h) + 1rem); padding-bottom: 1rem; }
@media (max-width: 768px) {
  .v9b9-main { padding-bottom: calc(var(--v9b9-bottomnav-h) + 1.5rem); }
}

/* ---------- Carousel ---------- */
.v9b9-carousel {
  position: relative; width: 100%; border-radius: var(--v9b9-radius);
  overflow: hidden; box-shadow: var(--v9b9-shadow); background: var(--v9b9-bg-2);
}
.v9b9-slides { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.v9b9-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  cursor: pointer;
}
.v9b9-slide.v9b9-active { opacity: 1; }
.v9b9-slide img { width: 100%; height: 100%; object-fit: cover; }
.v9b9-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem; background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
  color: var(--v9b9-text); font-size: 1.4rem; font-weight: 700;
}
.v9b9-dots { position: absolute; bottom: 0.8rem; right: 1rem; display: flex; gap: 0.5rem; }
.v9b9-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(233,236,239,0.5); cursor: pointer; border: none;
}
.v9b9-dot.v9b9-active { background: var(--v9b9-accent); }

/* ---------- Section / Headings ---------- */
.v9b9-section { padding: 2rem 0; }
.v9b9-section-title {
  font-size: 1.8rem; font-weight: 800; color: var(--v9b9-text);
  margin-bottom: 1rem; padding-left: 1rem; border-left: 4px solid var(--v9b9-accent);
}
.v9b9-h1 {
  font-size: 2rem; font-weight: 800; line-height: 2.4rem;
  color: var(--v9b9-text); margin: 1.5rem 0 1rem;
}
.v9b9-lead { font-size: 1.45rem; color: var(--v9b9-text-mute); line-height: 2.2rem; margin-bottom: 1.2rem; }
.v9b9-text p { margin-bottom: 1rem; line-height: 2.2rem; }
.v9b9-text strong { color: var(--v9b9-accent); }

/* ---------- Game grid ---------- */
.v9b9-cat-title {
  font-size: 1.6rem; font-weight: 700; margin: 1.8rem 0 1rem;
  color: var(--v9b9-text); display: flex; align-items: center; gap: 0.6rem;
}
.v9b9-cat-title i { color: var(--v9b9-accent); }
.v9b9-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
@media (min-width: 400px) { .v9b9-grid { grid-template-columns: repeat(4, 1fr); } }
.v9b9-game-card {
  background: var(--v9b9-bg-2); border-radius: var(--v9b9-radius-sm);
  overflow: hidden; border: 1px solid var(--v9b9-border); cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v9b9-game-card:active { transform: scale(0.95); box-shadow: 0 0 0 2px var(--v9b9-accent); }
.v9b9-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.v9b9-game-name {
  font-size: 1.1rem; padding: 0.5rem 0.4rem; text-align: center;
  color: var(--v9b9-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Card components ---------- */
.v9b9-card {
  background: var(--v9b9-bg-2); border: 1px solid var(--v9b9-border);
  border-radius: var(--v9b9-radius); padding: 1.4rem; margin-bottom: 1.2rem;
}
.v9b9-card h3 { font-size: 1.5rem; color: var(--v9b9-text); margin-bottom: 0.8rem; }
.v9b9-card ul { list-style: none; }
.v9b9-card li { padding: 0.6rem 0; border-bottom: 1px dashed var(--v9b9-border); line-height: 2rem; }
.v9b9-card li:last-child { border-bottom: none; }
.v9b9-card li i { color: var(--v9b9-accent); margin-right: 0.6rem; }

/* ---------- Promo link styles ---------- */
.v9b9-promo-link {
  color: var(--v9b9-accent); font-weight: 700; cursor: pointer;
  text-decoration: underline;
}
.v9b9-promo-link:hover { color: var(--v9b9-accent-2); }
.v9b9-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 1.3rem; margin: 1rem 0;
  background: linear-gradient(135deg, var(--v9b9-accent), var(--v9b9-accent-2));
  color: #1a1a1a; font-size: 1.6rem; font-weight: 800; border: none;
  border-radius: var(--v9b9-radius); cursor: pointer; min-height: 4.8rem;
}
.v9b9-cta:active { transform: scale(0.97); }

/* ---------- RTP / stat row ---------- */
.v9b9-stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.v9b9-stat {
  background: var(--v9b9-bg-2); border-radius: var(--v9b9-radius-sm);
  padding: 1rem; text-align: center; border: 1px solid var(--v9b9-border);
}
.v9b9-stat .v9b9-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--v9b9-accent); }
.v9b9-stat .v9b9-stat-label { font-size: 1.2rem; color: var(--v9b9-text-mute); }

/* ---------- Testimonial ---------- */
.v9b9-testimonial {
  background: var(--v9b9-bg-2); border-left: 3px solid var(--v9b9-accent);
  border-radius: var(--v9b9-radius-sm); padding: 1.1rem 1.2rem; margin-bottom: 1rem;
}
.v9b9-testimonial p { font-size: 1.35rem; color: var(--v9b9-text); line-height: 2rem; }
.v9b9-testimonial .v9b9-author { font-size: 1.2rem; color: var(--v9b9-text-mute); margin-top: 0.5rem; }

/* ---------- Payment chips ---------- */
.v9b9-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.v9b9-chip {
  background: var(--v9b9-bg-3); color: var(--v9b9-text);
  padding: 0.6rem 1rem; border-radius: 2rem; font-size: 1.2rem; border: 1px solid var(--v9b9-border);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.v9b9-chip i { color: var(--v9b9-accent); }

/* ---------- Winners showcase ---------- */
.v9b9-winner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--v9b9-bg-2); padding: 0.9rem 1.1rem; border-radius: var(--v9b9-radius-sm);
  border: 1px solid var(--v9b9-border); margin-bottom: 0.6rem;
}
.v9b9-winner .v9b9-winner-name { font-size: 1.3rem; color: var(--v9b9-text); }
.v9b9-winner .v9b9-winner-amount { font-size: 1.4rem; color: var(--v9b9-gold); font-weight: 800; }

/* ---------- Footer ---------- */
.v9b9-footer {
  background: var(--v9b9-bg-2); border-top: 1px solid var(--v9b9-border);
  padding: 2.4rem 1.2rem 3rem; margin-top: 2rem;
}
.v9b9-footer-inner { max-width: 430px; margin: 0 auto; }
.v9b9-footer-brand { font-size: 1.3rem; color: var(--v9b9-text-mute); line-height: 2rem; margin-bottom: 1.4rem; }
.v9b9-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.v9b9-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; margin-bottom: 1.4rem; }
.v9b9-footer-links a { font-size: 1.25rem; color: var(--v9b9-text-mute); }
.v9b9-footer-copy { font-size: 1.15rem; color: var(--v9b9-text-mute); text-align: center; border-top: 1px solid var(--v9b9-border); padding-top: 1.2rem; }

/* ---------- Bottom nav ---------- */
.v9b9-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--v9b9-bottomnav-h);
  background: linear-gradient(180deg, #2b2b2b 0%, #161616 100%);
  border-top: 1px solid var(--v9b9-border);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
}
.v9b9-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--v9b9-text-mute);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; cursor: pointer; transition: color 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}
.v9b9-bottomnav-btn i, .v9b9-bottomnav-btn .material-icons-outlined,
.v9b9-bottomnav-btn .ion-icon { font-size: 2.4rem; line-height: 1; }
.v9b9-bottomnav-btn .v9b9-bn-label { font-size: 1.05rem; font-weight: 600; }
.v9b9-bottomnav-btn:active { transform: scale(0.92); }
.v9b9-bottomnav-btn:hover { color: var(--v9b9-accent); }
.v9b9-bottomnav-btn.v9b9-current { color: var(--v9b9-accent); }
.v9b9-bottomnav-btn.v9b9-current::before {
  content: ""; position: absolute; top: 0; width: 2.4rem; height: 3px;
  background: var(--v9b9-accent); border-radius: 0 0 4px 4px;
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .v9b9-bottomnav { display: none; }
  .v9b9-menu-btn { display: none; }
  .v9b9-desktop-nav { display: flex; gap: 1.2rem; align-items: center; }
  .v9b9-desktop-nav a { color: var(--v9b9-text); font-size: 1.3rem; font-weight: 600; }
  .v9b9-mobile-menu { display: none; }
}
.v9b9-desktop-nav { display: none; }

/* ---------- Helpers ---------- */
.v9b9-hidden { display: none; }
.v9b9-center { text-align: center; }
.v9b9-mt-1 { margin-top: 1rem; } .v9b9-mt-2 { margin-top: 2rem; }
.v9b9-mb-1 { margin-bottom: 1rem; } .v9b9-mb-2 { margin-bottom: 2rem; }
