/* ============================================================
   7000 bet apk - style.css
   All custom classes use prefix v3c9-
   Mobile-first, max-width 430px
   Palette: #FFCCCB | #BAE1FF | #333333 | #E91E63
   ============================================================ */

:root {
  --v3c9-primary: #E91E63;
  --v3c9-bg: #333333;
  --v3c9-light-pink: #FFCCCB;
  --v3c9-light-blue: #BAE1FF;
  --v3c9-text: #ffffff;
  --v3c9-text-muted: #d9d9d9;
  --v3c9-card-bg: #2a2a2a;
  --v3c9-card-border: #444444;
  --v3c9-accent: #FFD700;
  --v3c9-radius: 10px;
}

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

html {
  font-size: 62.5%;
}

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

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

/* ============================================================
   Header
   ============================================================ */
.v3c9-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-bottom: 2px solid var(--v3c9-primary);
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.v3c9-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.v3c9-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.v3c9-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v3c9-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v3c9-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.v3c9-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: none;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: 36px;
  line-height: 1;
}
.v3c9-btn:active { transform: scale(0.96); }

.v3c9-btn-register {
  background: linear-gradient(135deg, var(--v3c9-primary), #b0124a);
  color: #fff;
  box-shadow: 0 2px 6px rgba(233,30,99,0.4);
}
.v3c9-btn-login {
  background: linear-gradient(135deg, var(--v3c9-light-blue), #6bb8ec);
  color: #1f1f1f;
}
.v3c9-btn-ghost {
  background: transparent;
  color: var(--v3c9-text);
  border: 1px solid #555;
}

.v3c9-menu-toggle {
  background: transparent;
  border: none;
  color: var(--v3c9-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Mobile Menu (slide-down)
   ============================================================ */
.v3c9-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: #1f1f1f;
  border-bottom: 2px solid var(--v3c9-primary);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  padding: 6rem 1rem 1rem;
  max-height: 80vh;
  overflow-y: auto;
}
.v3c9-mobile-menu.v3c9-menu-open { transform: translateY(0); }
.v3c9-mobile-menu a {
  display: block;
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid #333;
  color: var(--v3c9-text);
  font-size: 1.4rem;
}
.v3c9-mobile-menu a:hover { background: #2a2a2a; color: var(--v3c9-accent); }
.v3c9-menu-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: transparent;
  border: none;
  color: var(--v3c9-text);
  font-size: 2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

/* ============================================================
   Layout
   ============================================================ */
.v3c9-container {
  width: 100%;
  padding: 0 1rem;
}
.v3c9-main {
  padding-bottom: 80px;
}
.v3c9-section {
  padding: 1.4rem 1rem;
  margin-bottom: 0.5rem;
}
.v3c9-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--v3c9-accent);
  margin-bottom: 0.8rem;
  border-left: 4px solid var(--v3c9-primary);
  padding-left: 0.6rem;
}
.v3c9-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--v3c9-light-blue);
  margin: 0.8rem 0 0.5rem;
}
.v3c9-text-muted { color: var(--v3c9-text-muted); }
.v3c9-p { margin-bottom: 0.8rem; line-height: 1.6; }

/* ============================================================
   Carousel
   ============================================================ */
.v3c9-carousel {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--v3c9-radius);
  margin: 0.8rem 0;
}
.v3c9-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}
.v3c9-slide img { width: 100%; height: 100%; object-fit: cover; }
.v3c9-slide.v3c9-slide-active { opacity: 1; }
.v3c9-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.v3c9-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.v3c9-dot.v3c9-dot-active { background: var(--v3c9-primary); }

/* ============================================================
   Hero / H1
   ============================================================ */
.v3c9-hero {
  background: linear-gradient(135deg, #1f1f1f, #3a1a2a);
  padding: 1.4rem 1rem;
  border-radius: var(--v3c9-radius);
  margin: 0.8rem 0;
  text-align: center;
}
.v3c9-hero h1 {
  font-size: 2rem;
  color: var(--v3c9-accent);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.v3c9-hero p { color: var(--v3c9-text-muted); font-size: 1.3rem; }

/* ============================================================
   Game grid + cards
   ============================================================ */
.v3c9-game-section { margin-bottom: 1.2rem; }
.v3c9-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.v3c9-game-card {
  background: var(--v3c9-card-bg);
  border: 1px solid var(--v3c9-card-border);
  border-radius: 8px;
  padding: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.v3c9-game-card:active {
  transform: scale(0.95);
  border-color: var(--v3c9-primary);
}
.v3c9-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.3rem;
}
.v3c9-game-name {
  font-size: 1.1rem;
  color: var(--v3c9-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.v3c9-game-cat-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: var(--v3c9-primary);
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

/* ============================================================
   Info / feature cards
   ============================================================ */
.v3c9-card {
  background: var(--v3c9-card-bg);
  border: 1px solid var(--v3c9-card-border);
  border-radius: var(--v3c9-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.v3c9-card h3 {
  font-size: 1.5rem;
  color: var(--v3c9-accent);
  margin-bottom: 0.5rem;
}
.v3c9-card p { color: var(--v3c9-text-muted); line-height: 1.6; }
.v3c9-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.v3c9-feature-item {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 0.8rem;
  text-align: center;
  border: 1px solid #3a3a3a;
}
.v3c9-feature-item .v3c9-ico {
  font-size: 2.2rem;
  color: var(--v3c9-primary);
  margin-bottom: 0.3rem;
}
.v3c9-feature-item h4 { font-size: 1.3rem; color: var(--v3c9-accent); margin-bottom: 0.2rem; }
.v3c9-feature-item p { font-size: 1.1rem; color: var(--v3c9-text-muted); }

/* ============================================================
   CTA banner
   ============================================================ */
.v3c9-cta {
  background: linear-gradient(135deg, var(--v3c9-primary), #b0124a);
  padding: 1.2rem;
  border-radius: var(--v3c9-radius);
  text-align: center;
  margin: 0.8rem 0;
  color: #fff;
}
.v3c9-cta h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.v3c9-cta p { font-size: 1.2rem; margin-bottom: 0.7rem; color: #fff; }
.v3c9-cta .v3c9-btn {
  background: #fff;
  color: var(--v3c9-primary);
  font-size: 1.3rem;
  padding: 0.7rem 1.4rem;
}

/* ============================================================
   Testimonials / winners
   ============================================================ */
.v3c9-list-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #3a3a3a;
}
.v3c9-list-row:last-child { border-bottom: none; }
.v3c9-list-row .v3c9-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--v3c9-light-blue);
  display: flex; align-items: center; justify-content: center;
  color: #1f1f1f; font-weight: 700; font-size: 1.2rem;
  flex-shrink: 0;
}
.v3c9-list-row .v3c9-info { flex: 1; min-width: 0; }
.v3c9-list-row .v3c9-info strong { color: var(--v3c9-accent); font-size: 1.2rem; }
.v3c9-list-row .v3c9-info span { display:block; font-size: 1.1rem; color: var(--v3c9-text-muted); }
.v3c9-list-row .v3c9-amount { color: var(--v3c9-accent); font-weight: 700; font-size: 1.2rem; }

/* ============================================================
   Payment methods
   ============================================================ */
.v3c9-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.v3c9-pay-item {
  background: #2a2a2a;
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--v3c9-text-muted);
  border: 1px solid #3a3a3a;
}
.v3c9-pay-item .v3c9-ico { font-size: 1.8rem; color: var(--v3c9-light-blue); display:block; }

/* ============================================================
   Footer
   ============================================================ */
.v3c9-footer {
  background: #1a1a1a;
  padding: 1.4rem 1rem 2rem;
  border-top: 2px solid var(--v3c9-primary);
  margin-top: 1rem;
}
.v3c9-footer-brand {
  font-size: 1.3rem;
  color: var(--v3c9-text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.v3c9-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.v3c9-footer-links a {
  background: #2a2a2a;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 1.1rem;
  border: 1px solid #3a3a3a;
}
.v3c9-footer-copy {
  font-size: 1.1rem;
  color: #777;
  text-align: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 0.8rem;
}

/* ============================================================
   Mobile Bottom Navigation (fixed)
   ============================================================ */
.v3c9-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  background: linear-gradient(180deg, #1f1f1f, #111);
  border-top: 2px solid var(--v3c9-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}
.v3c9-bottom-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--v3c9-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.15s, transform 0.15s;
  padding: 0;
}
.v3c9-bottom-nav-btn:active { transform: scale(0.92); }
.v3c9-bottom-nav-btn .v3c9-ico { font-size: 2.2rem; }
.v3c9-bottom-nav-btn .v3c9-label { font-size: 1rem; line-height: 1; }
.v3c9-bottom-nav-btn.v3c9-nav-active {
  color: var(--v3c9-primary);
}
.v3c9-bottom-nav-btn.v3c9-nav-active .v3c9-ico {
  color: var(--v3c9-accent);
}

/* ============================================================
   Desktop: hide bottom nav (mobile-only)
   ============================================================ */
@media (min-width: 769px) {
  .v3c9-bottom-nav { display: none; }
  body { max-width: 430px; }
  .v3c9-main { padding-bottom: 1rem; }
}

/* Ensure mobile bottom padding for content clearance */
@media (max-width: 768px) {
  .v3c9-main { padding-bottom: 80px; }
}

/* ============================================================
   Utility
   ============================================================ */
.v3c9-text-center { text-align: center; }
.v3c9-mt-1 { margin-top: 0.5rem; }
.v3c9-mb-1 { margin-bottom: 0.5rem; }
.v3c9-promo-text {
  color: var(--v3c9-accent);
  font-weight: 700;
  cursor: pointer;
}
.v3c9-divider {
  height: 1px;
  background: #3a3a3a;
  margin: 0.8rem 0;
  border: none;
}

/* FAQ inline */
.v3c9-faq-item {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  border: 1px solid #3a3a3a;
}
.v3c9-faq-item h4 { color: var(--v3c9-light-blue); font-size: 1.3rem; margin-bottom: 0.3rem; }
.v3c9-faq-item p { color: var(--v3c9-text-muted); font-size: 1.2rem; line-height: 1.5; }
