/**
 * bet22.sbs - Theme Stylesheet
 * All classes and variables use vc75- prefix
 * Colors: #B22222 | #191970 | #212F3D | #AFEEEE | #00E5FF
 * Mobile-first: max-width 430px
 */
:root {
  --vc75-primary: #B22222;
  --vc75-secondary: #191970;
  --vc75-bg: #212F3D;
  --vc75-text: #AFEEEE;
  --vc75-accent: #00E5FF;
  --vc75-bg-dark: #0d1520;
  --vc75-bg-card: #1a2634;
  --vc75-bg-card-alt: #162029;
  --vc75-border: #2a3f52;
  --vc75-text-light: #e0f7fa;
  --vc75-text-muted: #8ba7b8;
  --vc75-gold: #ffd700;
  --vc75-success: #00c853;
  --vc75-radius: 8px;
  --vc75-radius-lg: 12px;
  --vc75-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --vc75-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--vc75-bg);
  color: var(--vc75-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--vc75-accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* ========== HEADER ========== */
.vc75-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(135deg, var(--vc75-primary), var(--vc75-secondary));
  z-index: 1000; padding: 0.8rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(178,34,34,0.4);
  height: 56px;
}
.vc75-logo { display: flex; align-items: center; gap: 0.6rem; }
.vc75-logo img { width: 28px; height: 28px; border-radius: 4px; }
.vc75-logo-text { color: #fff; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.5px; }
.vc75-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.vc75-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem; border-radius: var(--vc75-radius);
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--vc75-transition);
  min-height: 36px; text-decoration: none;
}
.vc75-btn-register {
  background: var(--vc75-gold); color: #1a1a1a;
}
.vc75-btn-register:hover { background: #ffe44d; transform: scale(1.05); }
.vc75-btn-login {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.vc75-btn-login:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.vc75-hamburger {
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; min-height: 36px;
}
.vc75-hamburger-active { color: var(--vc75-gold); }

/* Mobile Menu */
.vc75-mobile-menu {
  position: fixed; top: 56px; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: var(--vc75-bg-dark);
  border-bottom: 2px solid var(--vc75-primary);
  z-index: 9999; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.vc75-menu-open { max-height: 500px; }
.vc75-mobile-menu nav { padding: 1rem 1.2rem; }
.vc75-mobile-menu a {
  display: block; padding: 1rem 0;
  color: var(--vc75-text); font-size: 1.4rem;
  border-bottom: 1px solid var(--vc75-border);
  transition: var(--vc75-transition);
}
.vc75-mobile-menu a:last-child { border-bottom: none; }
.vc75-mobile-menu a:hover { color: var(--vc75-accent); padding-left: 1rem; }

/* ========== MAIN CONTENT ========== */
.vc75-main {
  margin-top: 56px; padding-bottom: 80px;
}

/* ========== CAROUSEL ========== */
.vc75-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 0 0 var(--vc75-radius-lg) var(--vc75-radius-lg);
}
.vc75-carousel-slide {
  display: none; width: 100%; cursor: pointer;
}
.vc75-carousel-slide img {
  width: 100%; height: 180px; object-fit: cover;
}
.vc75-slide-active { display: block; }
.vc75-carousel-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.vc75-carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  border: none; transition: var(--vc75-transition);
}
.vc75-dot-active { background: var(--vc75-gold); transform: scale(1.2); }

/* ========== SECTIONS ========== */
.vc75-section { padding: 2rem 1.2rem; }
.vc75-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--vc75-text-light);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--vc75-primary);
  display: flex; align-items: center; gap: 0.6rem;
}
.vc75-section-title i { color: var(--vc75-accent); font-size: 2rem; }

/* ========== GAME GRID ========== */
.vc75-cat-title {
  font-size: 1.5rem; font-weight: 600; color: var(--vc75-accent);
  margin: 1.6rem 0 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}
.vc75-cat-title i { font-size: 1.8rem; }
.vc75-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.vc75-game-item {
  text-align: center; cursor: pointer;
  border-radius: var(--vc75-radius); overflow: hidden;
  background: var(--vc75-bg-card); transition: var(--vc75-transition);
}
.vc75-game-item:hover { transform: translateY(-2px); box-shadow: var(--vc75-shadow); }
.vc75-game-item img {
  width: 100%; height: 70px; object-fit: cover;
  border-radius: var(--vc75-radius) var(--vc75-radius) 0 0;
}
.vc75-game-item span {
  display: block; padding: 0.4rem 0.2rem; font-size: 1rem;
  color: var(--vc75-text-muted); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

/* ========== CONTENT BLOCKS ========== */
.vc75-content-block {
  background: var(--vc75-bg-card); border-radius: var(--vc75-radius-lg);
  padding: 1.6rem; margin-bottom: 1.2rem;
  border-left: 3px solid var(--vc75-primary);
}
.vc75-content-block h3 {
  font-size: 1.5rem; color: var(--vc75-accent);
  margin-bottom: 0.8rem;
}
.vc75-content-block p {
  color: var(--vc75-text-muted); font-size: 1.3rem; line-height: 1.8rem;
  margin-bottom: 0.8rem;
}
.vc75-content-block ul { padding-left: 1.6rem; }
.vc75-content-block li {
  color: var(--vc75-text-muted); font-size: 1.3rem;
  line-height: 1.8rem; margin-bottom: 0.4rem;
  list-style: disc;
}

/* Promo link styles in content */
.vc75-promo-link {
  color: var(--vc75-gold); font-weight: 600; cursor: pointer;
  text-decoration: underline; transition: var(--vc75-transition);
}
.vc75-promo-link:hover { color: #ffe44d; }

/* CTA Button large */
.vc75-cta-btn {
  display: block; width: 100%; padding: 1.4rem;
  background: linear-gradient(135deg, var(--vc75-primary), #d43737);
  color: #fff; font-size: 1.6rem; font-weight: 700;
  text-align: center; border: none; border-radius: var(--vc75-radius-lg);
  cursor: pointer; transition: var(--vc75-transition);
  margin: 1.6rem 0;
}
.vc75-cta-btn:hover { transform: scale(1.02); box-shadow: 0 4px 16px rgba(178,34,34,0.5); }

/* ========== TESTIMONIALS ========== */
.vc75-testimonial {
  background: var(--vc75-bg-card); border-radius: var(--vc75-radius);
  padding: 1.2rem; margin-bottom: 1rem;
  border: 1px solid var(--vc75-border);
}
.vc75-testimonial-header {
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem;
}
.vc75-testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--vc75-primary); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.4rem;
}
.vc75-testimonial-name { color: var(--vc75-accent); font-weight: 600; font-size: 1.3rem; }
.vc75-testimonial-text { color: var(--vc75-text-muted); font-size: 1.2rem; line-height: 1.6rem; }
.vc75-stars { color: var(--vc75-gold); font-size: 1.2rem; }

/* ========== PAYMENT ========== */
.vc75-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.vc75-payment-item {
  background: var(--vc75-bg-card); border-radius: var(--vc75-radius);
  padding: 0.8rem 1.2rem; text-align: center;
  border: 1px solid var(--vc75-border); font-size: 1.2rem;
  color: var(--vc75-text-muted);
}
.vc75-payment-item i { display: block; font-size: 2rem; color: var(--vc75-accent); margin-bottom: 0.4rem; }

/* ========== WINNERS ========== */
.vc75-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 0; border-bottom: 1px solid var(--vc75-border);
  font-size: 1.2rem;
}
.vc75-winner-row:last-child { border-bottom: none; }
.vc75-winner-name { color: var(--vc75-text-light); font-weight: 600; }
.vc75-winner-game { color: var(--vc75-text-muted); }
.vc75-winner-amount { color: var(--vc75-gold); font-weight: 700; }

/* ========== FOOTER ========== */
.vc75-footer {
  background: var(--vc75-bg-dark); padding: 2rem 1.2rem 1rem;
  text-align: center;
}
.vc75-footer-brand { color: var(--vc75-text-muted); font-size: 1.2rem; line-height: 1.6rem; margin-bottom: 1.2rem; }
.vc75-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.2rem; }
.vc75-footer-links a {
  color: var(--vc75-text-muted); font-size: 1.1rem;
  padding: 0.4rem 0.8rem; border-radius: 4px;
  background: var(--vc75-bg-card); transition: var(--vc75-transition);
}
.vc75-footer-links a:hover { color: var(--vc75-accent); background: var(--vc75-bg-card-alt); }
.vc75-footer-promo-btns { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.2rem; }
.vc75-footer-copy { color: var(--vc75-text-muted); font-size: 1rem; border-top: 1px solid var(--vc75-border); padding-top: 1rem; }

/* ========== BOTTOM NAV ========== */
.vc75-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(180deg, var(--vc75-bg-dark), #080e14);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; z-index: 1000;
  border-top: 1px solid var(--vc75-primary);
  box-shadow: 0 -2px 12px rgba(178,34,34,0.3);
}
.vc75-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; background: none; border: none;
  color: var(--vc75-text-muted); cursor: pointer;
  min-width: 60px; min-height: 56px; padding: 0.4rem;
  transition: var(--vc75-transition); border-radius: 8px;
  position: relative;
}
.vc75-bottom-nav-btn i, .vc75-bottom-nav-btn .material-icons,
.vc75-bottom-nav-btn ion-icon, .vc75-bottom-nav-btn bi {
  font-size: 22px; margin-bottom: 2px;
}
.vc75-bottom-nav-btn span { font-size: 1rem; }
.vc75-bottom-nav-btn:hover, .vc75-bottom-active {
  color: var(--vc75-accent);
}
.vc75-bottom-active::after {
  content: ''; position: absolute; top: 0;
  left: 25%; right: 25%; height: 2px;
  background: var(--vc75-accent); border-radius: 0 0 2px 2px;
}
.vc75-bottom-nav-btn:active { transform: scale(0.92); }

/* ========== HELP PAGE SPECIFIC ========== */
.vc75-help-section { padding: 2rem 1.2rem; }
.vc75-help-card {
  background: var(--vc75-bg-card); border-radius: var(--vc75-radius-lg);
  padding: 1.4rem; margin-bottom: 1.2rem;
  border: 1px solid var(--vc75-border);
}
.vc75-help-card h2 {
  font-size: 1.6rem; color: var(--vc75-accent); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.vc75-help-card h3 {
  font-size: 1.4rem; color: var(--vc75-text-light); margin: 1rem 0 0.4rem;
}
.vc75-help-card p {
  color: var(--vc75-text-muted); font-size: 1.3rem; line-height: 1.7rem;
  margin-bottom: 0.6rem;
}
.vc75-help-card ol, .vc75-help-card ul { padding-left: 1.6rem; margin-bottom: 0.6rem; }
.vc75-help-card li {
  color: var(--vc75-text-muted); font-size: 1.3rem; line-height: 1.7rem;
  margin-bottom: 0.3rem;
}
.vc75-help-card ol li { list-style: decimal; }
.vc75-help-card ul li { list-style: disc; }

/* ========== DESKTOP HIDE ========== */
@media (min-width: 769px) {
  .vc75-bottom-nav { display: none; }
  .vc75-hamburger { display: none; }
}
@media (max-width: 768px) {
  .vc75-main { padding-bottom: 80px; }
}
