/* ============================================================
   7000 bet apk - theme-7bf0.css
   All custom classes use prefix: s7bf-
   Palette: #2D2D2D | #DCDCDC | #ADB5BD | #E91E63 | #ECF0F1
   Mobile-first, max-width 430px.
   English comments only.
   ============================================================ */

:root {
  --s7bf-bg: #2D2D2D;
  --s7bf-bg-alt: #1f1f1f;
  --s7bf-bg-card: #3a3a3a;
  --s7bf-text: #ECF0F1;
  --s7bf-text-muted: #ADB5BD;
  --s7bf-border: #DCDCDC;
  --s7bf-primary: #E91E63;
  --s7bf-primary-dark: #b3154a;
  --s7bf-accent: #ff5c8d;
  --s7bf-font: "Segoe UI", "Noto Sans Bengali", "Hind Siliguri", system-ui, -apple-system, sans-serif;
}

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

html { font-size: 62.5%; }

body {
  font-family: var(--s7bf-font);
  background: var(--s7bf-bg);
  color: var(--s7bf-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--s7bf-primary); text-decoration: none; }
a:hover { color: var(--s7bf-accent); }

/* ============ Layout ============ */
.s7bf-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; position: relative; }
.s7bf-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.s7bf-main { flex: 1; padding-top: 6rem; padding-bottom: 9rem; }

/* ============ Header ============ */
.s7bf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1f1f1f, #2D2D2D);
  border-bottom: 2px solid var(--s7bf-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.s7bf-header-inner {
  max-width: 430px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; padding: 0.6rem 1rem; gap: 0.5rem;
}
.s7bf-brand { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.s7bf-brand img { width: 30px; height: 30px; border-radius: 6px; }
.s7bf-brand-name { font-size: 1.5rem; font-weight: 800; color: var(--s7bf-text); white-space: nowrap; }
.s7bf-brand-name span { color: var(--s7bf-primary); }
.s7bf-header-actions { display: flex; align-items: center; gap: 0.4rem; }
.s7bf-icon-btn {
  background: transparent; border: none; color: var(--s7bf-text);
  font-size: 2rem; cursor: pointer; padding: 0.4rem; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.s7bf-icon-btn:hover { background: var(--s7bf-bg-card); color: var(--s7bf-primary); }

.s7bf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.1rem; border: none; border-radius: 24px; cursor: pointer;
  font-size: 1.3rem; font-weight: 700; min-height: 40px; text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.s7bf-btn:hover { transform: translateY(-1px); }
.s7bf-btn-primary { background: var(--s7bf-primary); color: #fff; }
.s7bf-btn-primary:hover { background: var(--s7bf-primary-dark); color: #fff; }
.s7bf-btn-outline { background: transparent; color: var(--s7bf-text); border: 1.5px solid var(--s7bf-border); }
.s7bf-btn-outline:hover { border-color: var(--s7bf-primary); color: var(--s7bf-primary); }

/* ============ Mobile menu (slide-down) ============ */
.s7bf-mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  max-width: 430px; margin: 0 auto;
  background: var(--s7bf-bg-alt);
  border-bottom: 2px solid var(--s7bf-primary);
  transform: translateY(-100%); transition: transform 0.3s ease;
  padding: 5.5rem 1.2rem 1.2rem; max-height: 80vh; overflow-y: auto;
}
.s7bf-mobile-menu.s7bf-menu-open { transform: translateY(0); }
.s7bf-menu-list { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.s7bf-menu-list a {
  display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1rem;
  color: var(--s7bf-text); border-radius: 8px; font-size: 1.4rem; font-weight: 600;
}
.s7bf-menu-list a:hover { background: var(--s7bf-bg-card); color: var(--s7bf-primary); }
.s7bf-menu-list .material-icons-outlined, .s7bf-menu-list i { font-size: 2rem; color: var(--s7bf-primary); }

/* ============ Hero / Carousel ============ */
.s7bf-carousel { position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 1.5rem; }
.s7bf-slides { position: relative; }
.s7bf-slide {
  display: none; position: relative; cursor: pointer;
}
.s7bf-slide.s7bf-slide-active { display: block; }
.s7bf-slide img { width: 100%; height: 180px; object-fit: cover; }
.s7bf-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  padding: 1rem 1.2rem; color: #fff;
}
.s7bf-slide-overlay h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.3rem; }
.s7bf-slide-overlay p { font-size: 1.2rem; color: var(--s7bf-text-muted); }
.s7bf-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.6rem 0; }
.s7bf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--s7bf-text-muted); cursor: pointer; }
.s7bf-dot.s7bf-dot-active { background: var(--s7bf-primary); width: 22px; border-radius: 4px; }

/* ============ Section ============ */
.s7bf-section { margin-bottom: 2rem; }
.s7bf-section-title {
  font-size: 1.7rem; font-weight: 800; margin-bottom: 0.8rem;
  padding-left: 0.8rem; border-left: 4px solid var(--s7bf-primary);
  color: var(--s7bf-text);
}
.s7bf-section-title small { display: block; font-size: 1.1rem; font-weight: 500; color: var(--s7bf-primary); }
.s7bf-lead { color: var(--s7bf-text-muted); margin-bottom: 0.8rem; font-size: 1.35rem; }

/* ============ Category tabs (decorative, no toggle) ============ */
.s7bf-cat-label {
  font-size: 1.4rem; font-weight: 700; color: var(--s7bf-text);
  margin: 1.2rem 0 0.6rem; display: flex; align-items: center; gap: 0.5rem;
}
.s7bf-cat-label i, .s7bf-cat-label span.material-icons-outlined { color: var(--s7bf-primary); font-size: 2rem; }

/* ============ Game grid ============ */
.s7bf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.s7bf-card {
  background: var(--s7bf-bg-card); border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(220,220,220,0.08); transition: transform 0.15s, border-color 0.2s;
  cursor: pointer; display: flex; flex-direction: column;
}
.s7bf-card:hover { transform: translateY(-2px); border-color: var(--s7bf-primary); }
.s7bf-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #111; }
.s7bf-card-name {
  font-size: 1.1rem; text-align: center; padding: 0.4rem 0.3rem; color: var(--s7bf-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600;
}
.s7bf-card-tap {
  font-size: 0.95rem; color: var(--s7bf-primary); text-align: center; padding-bottom: 0.3rem; font-weight: 700;
}

/* ============ Info / feature blocks ============ */
.s7bf-info-box {
  background: var(--s7bf-bg-card); border-radius: 12px; padding: 1.1rem; margin-bottom: 1rem;
  border-left: 3px solid var(--s7bf-primary);
}
.s7bf-info-box h3 { font-size: 1.45rem; margin-bottom: 0.5rem; color: var(--s7bf-text); }
.s7bf-info-box p { color: var(--s7bf-text-muted); font-size: 1.25rem; }
.s7bf-info-box ul { margin: 0.4rem 0 0 1.4rem; color: var(--s7bf-text-muted); }
.s7bf-info-box li { margin-bottom: 0.3rem; font-size: 1.2rem; }

.s7bf-feature-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.6rem; margin-bottom: 1rem; }
.s7bf-feature-item {
  background: var(--s7bf-bg-card); border-radius: 10px; padding: 0.9rem; text-align: center;
}
.s7bf-feature-item i, .s7bf-feature-item .material-icons-outlined { font-size: 2.4rem; color: var(--s7bf-primary); }
.s7bf-feature-item h4 { font-size: 1.2rem; margin: 0.3rem 0; color: var(--s7bf-text); }
.s7bf-feature-item p { font-size: 1.05rem; color: var(--s7bf-text-muted); }

/* ============ Promo CTA banner ============ */
.s7bf-cta {
  background: linear-gradient(135deg, var(--s7bf-primary), var(--s7bf-primary-dark));
  border-radius: 14px; padding: 1.2rem; text-align: center; color: #fff; margin-bottom: 1.5rem;
}
.s7bf-cta h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.s7bf-cta p { font-size: 1.2rem; margin-bottom: 0.8rem; opacity: 0.95; }
.s7bf-cta .s7bf-btn { background: #fff; color: var(--s7bf-primary); }

/* ============ Winners / testimonials ============ */
.s7bf-winner-list { display: flex; flex-direction: column; gap: 0.5rem; }
.s7bf-winner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--s7bf-bg-card); border-radius: 8px; padding: 0.7rem 0.9rem;
}
.s7bf-winner span { font-size: 1.15rem; }
.s7bf-winner .s7bf-winner-amount { color: var(--s7bf-primary); font-weight: 800; }

.s7bf-testimonial {
  background: var(--s7bf-bg-card); border-radius: 10px; padding: 0.9rem; margin-bottom: 0.7rem;
}
.s7bf-testimonial .s7bf-stars { color: #FFD700; margin-bottom: 0.3rem; }
.s7bf-testimonial p { font-size: 1.2rem; color: var(--s7bf-text-muted); }
.s7bf-testimonial .s7bf-author { font-size: 1.1rem; color: var(--s7bf-primary); margin-top: 0.3rem; font-weight: 700; }

/* ============ Payment / app CTA ============ */
.s7bf-pay-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.s7bf-pay-chip {
  background: var(--s7bf-bg-card); border: 1px solid rgba(220,220,220,0.15);
  border-radius: 20px; padding: 0.5rem 0.9rem; font-size: 1.1rem; color: var(--s7bf-text);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.s7bf-app-cta {
  background: var(--s7bf-bg-card); border-radius: 12px; padding: 1.1rem; text-align: center; margin-bottom: 1rem;
}
.s7bf-app-cta h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.s7bf-app-cta p { font-size: 1.2rem; color: var(--s7bf-text-muted); margin-bottom: 0.8rem; }

/* ============ FAQ ============ */
.s7bf-faq-item {
  background: var(--s7bf-bg-card); border-radius: 10px; padding: 0.9rem; margin-bottom: 0.6rem;
}
.s7bf-faq-item h4 { font-size: 1.3rem; color: var(--s7bf-primary); margin-bottom: 0.3rem; }
.s7bf-faq-item p { font-size: 1.2rem; color: var(--s7bf-text-muted); }

/* ============ Inline SEO text links ============ */
.s7bf-seo-text { font-size: 1.25rem; color: var(--s7bf-text-muted); margin-bottom: 1rem; }
.s7bf-seo-text a { color: var(--s7bf-primary); font-weight: 600; text-decoration: underline; }

/* ============ Footer ============ */
.s7bf-footer {
  background: var(--s7bf-bg-alt); border-top: 2px solid var(--s7bf-primary);
  padding: 1.4rem 1.2rem 1rem; color: var(--s7bf-text-muted); font-size: 1.15rem;
}
.s7bf-footer-brand { color: var(--s7bf-text); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.s7bf-footer-desc { margin-bottom: 0.8rem; }
.s7bf-footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; margin: 0.6rem 0; }
.s7bf-footer-links a { color: var(--s7bf-text-muted); font-size: 1.1rem; }
.s7bf-footer-links a:hover { color: var(--s7bf-primary); }
.s7bf-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.s7bf-footer-promo .s7bf-btn { font-size: 1.1rem; padding: 0.5rem 0.9rem; }
.s7bf-footer-copy { border-top: 1px solid rgba(220,220,220,0.1); padding-top: 0.7rem; margin-top: 0.7rem; font-size: 1.05rem; }

/* ============ Mobile bottom nav ============ */
.s7bf-bnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #2D2D2D, #1f1f1f);
  border-top: 2px solid var(--s7bf-primary);
  height: 62px; display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.5);
}
.s7bf-bnav-btn {
  flex: 1; min-width: 60px; min-height: 60px; background: transparent; border: none;
  color: var(--s7bf-text-muted); display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; cursor: pointer; padding: 0.2rem; transition: color 0.2s, transform 0.15s;
}
.s7bf-bnav-btn i, .s7bf-bnav-btn .material-icons-outlined, .s7bf-bnav-btn ion-icon { font-size: 24px; }
.s7bf-bnav-btn span:not(.s7bf-bnav-text) { display: none; }
.s7bf-bnav-text { font-size: 10px; font-weight: 600; }
.s7bf-bnav-btn:active { transform: scale(0.92); }
.s7bf-bnav-btn:hover { color: var(--s7bf-primary); }
.s7bf-bnav-active { color: var(--s7bf-primary); }
.s7bf-bnav-active i, .s7bf-bnav-active .material-icons-outlined { color: var(--s7bf-primary); }

/* ============ Desktop ============ */
@media (min-width: 769px) {
  .s7bf-bnav { display: none; }
  .s7bf-main { padding-bottom: 2rem; }
  .s7bf-header-actions .s7bf-btn { display: inline-flex; }
}
@media (max-width: 768px) {
  .s7bf-main { padding-bottom: 80px; }
}
