/* bd1111.cyou - Core stylesheet
   Mobile-first gaming website layout. All custom classes use the "vc76-" prefix.
   Color palette: #0D1117 bg, #EEEEEE text, #40E0D0 primary, #5F9EA0 teal,
   #CC99FF violet, #AFEEEE light cyan. Comments in English per project convention.
*/

:root {
  --vc76-bg: #0D1117;
  --vc76-bg-2: #161B24;
  --vc76-bg-3: #1E2530;
  --vc76-text: #EEEEEE;
  --vc76-text-dim: #B7C0CC;
  --vc76-primary: #40E0D0;
  --vc76-teal: #5F9EA0;
  --vc76-violet: #CC99FF;
  --vc76-cyan: #AFEEEE;
  --vc76-gold: #FFD166;
  --vc76-radius: 1.2rem;
  --vc76-shadow: 0 0.4rem 1.6rem rgba(0,0,0,0.45);
}

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

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

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

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

/* ===== Header ===== */
.vc76-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(135deg, #0D1117 0%, #161B24 100%);
  border-bottom: 0.1rem solid rgba(64,224,208,0.25);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; min-height: 5.6rem;
}
.vc76-logo { display: flex; align-items: center; gap: 0.6rem; }
.vc76-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.vc76-logo-text { font-size: 1.7rem; font-weight: 700; color: var(--vc76-cyan); letter-spacing: 0.05rem; }
.vc76-logo-text span { color: var(--vc76-primary); }

.vc76-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.vc76-btn {
  border: none; border-radius: 0.8rem; padding: 0.7rem 1.3rem;
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease; min-height: 4rem;
}
.vc76-btn:active { transform: scale(0.96); }
.vc76-btn-login { background: transparent; color: var(--vc76-cyan); border: 0.15rem solid var(--vc76-teal); }
.vc76-btn-register {
  background: linear-gradient(135deg, #40E0D0 0%, #CC99FF 100%);
  color: #0D1117; box-shadow: 0 0.3rem 0.8rem rgba(64,224,208,0.35);
}
.vc76-menu-btn {
  background: transparent; border: 0.15rem solid var(--vc76-teal); color: var(--vc76-cyan);
  width: 4rem; height: 4rem; border-radius: 0.8rem; font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Mobile Menu ===== */
.vc76-mobile-menu {
  position: fixed; top: 5.6rem; left: 0; right: 0; z-index: 9999;
  max-width: 430px; margin: 0 auto;
  background: var(--vc76-bg-2); border-bottom: 0.2rem solid var(--vc76-primary);
  padding: 1rem 1.2rem; display: none; box-shadow: var(--vc76-shadow);
}
.vc76-mobile-menu.vc76-open { display: block; }
.vc76-mobile-menu a {
  display: block; padding: 1rem 0.8rem; color: var(--vc76-text);
  border-bottom: 0.1rem solid rgba(95,158,160,0.2); font-size: 1.4rem;
}
.vc76-mobile-menu a:last-child { border-bottom: none; }
.vc76-mobile-menu a:active { background: rgba(64,224,208,0.12); }

/* ===== Main ===== */
.vc76-main { padding-top: 5.6rem; }
@media (max-width: 768px) { .vc76-main { padding-bottom: 8rem; } }

/* ===== Carousel ===== */
.vc76-carousel {
  position: relative; margin: 1rem 1.2rem; border-radius: var(--vc76-radius);
  overflow: hidden; box-shadow: var(--vc76-shadow); cursor: pointer;
}
.vc76-slide { display: none; position: relative; }
.vc76-slide.vc76-active { display: block; }
.vc76-slide img { width: 100%; height: 18rem; object-fit: cover; }
.vc76-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(13,17,23,0.9));
  padding: 1.2rem; color: var(--vc76-cyan); font-size: 1.5rem; font-weight: 600;
}
.vc76-dots { display: flex; gap: 0.5rem; justify-content: center; padding: 0.6rem; }
.vc76-dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgba(238,238,238,0.3); border: none; cursor: pointer; }
.vc76-dot.vc76-active { background: var(--vc76-primary); }

/* ===== Section titles ===== */
.vc76-section { margin: 1.6rem 1.2rem; }
.vc76-section-title {
  font-size: 1.7rem; font-weight: 700; margin-bottom: 1rem;
  padding-left: 0.9rem; border-left: 0.4rem solid var(--vc76-primary);
  color: var(--vc76-cyan);
}
.vc76-section-title .vc76-ico { color: var(--vc76-violet); margin-right: 0.4rem; }

/* ===== Game grid ===== */
.vc76-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.vc76-game-card {
  background: var(--vc76-bg-2); border-radius: 0.9rem; overflow: hidden;
  border: 0.1rem solid rgba(95,158,160,0.25); cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.vc76-game-card:active { transform: scale(0.96); border-color: var(--vc76-primary); }
.vc76-game-card img { width: 100%; height: 7.5rem; object-fit: cover; }
.vc76-game-name {
  font-size: 1.1rem; padding: 0.5rem; text-align: center; color: var(--vc76-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== Category label ===== */
.vc76-cat-label {
  display: inline-block; font-size: 1.2rem; font-weight: 600;
  color: var(--vc76-bg); background: var(--vc76-primary);
  padding: 0.2rem 0.8rem; border-radius: 0.6rem; margin-bottom: 0.6rem;
}

/* ===== Promo text link ===== */
.vc76-promo-link { color: var(--vc76-gold); font-weight: 700; }
.vc76-promo-link.vc76-violet { color: var(--vc76-violet); }
.vc76-promo-link.vc76-cyan { color: var(--vc76-cyan); }

/* ===== Feature cards ===== */
.vc76-feature-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.vc76-feature-card {
  background: var(--vc76-bg-2); border-radius: var(--vc76-radius); padding: 1.2rem;
  border: 0.1rem solid rgba(204,153,255,0.25);
}
.vc76-feature-card h3 { font-size: 1.5rem; color: var(--vc76-violet); margin-bottom: 0.5rem; }
.vc76-feature-card p { font-size: 1.3rem; color: var(--vc76-text-dim); }

/* ===== Stats / RTP row ===== */
.vc76-stat-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.vc76-stat {
  flex: 1 1 8rem; background: var(--vc76-bg-3); border-radius: 0.8rem;
  padding: 0.8rem; text-align: center; border: 0.1rem solid rgba(64,224,208,0.2);
}
.vc76-stat .vc76-num { font-size: 1.8rem; font-weight: 700; color: var(--vc76-primary); }
.vc76-stat .vc76-lbl { font-size: 1.1rem; color: var(--vc76-text-dim); }

/* ===== Testimonials ===== */
.vc76-testimonial {
  background: var(--vc76-bg-2); border-radius: var(--vc76-radius); padding: 1.1rem;
  margin-bottom: 0.8rem; border-left: 0.3rem solid var(--vc76-violet);
}
.vc76-testimonial .vc76-name { color: var(--vc76-gold); font-weight: 600; font-size: 1.3rem; }
.vc76-testimonial .vc76-quote { color: var(--vc76-text-dim); font-size: 1.3rem; margin-top: 0.3rem; }

/* ===== Payment ===== */
.vc76-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.vc76-pay-item {
  background: var(--vc76-bg-2); border-radius: 0.7rem; padding: 0.6rem;
  text-align: center; font-size: 1rem; color: var(--vc76-cyan);
  border: 0.1rem solid rgba(175,238,238,0.2);
}

/* ===== Winners ===== */
.vc76-winner {
  display: flex; justify-content: space-between; padding: 0.7rem 1rem;
  background: var(--vc76-bg-2); border-radius: 0.7rem; margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.vc76-winner .vc76-amt { color: var(--vc76-gold); font-weight: 700; }

/* ===== CTA banner ===== */
.vc76-cta {
  background: linear-gradient(135deg, #40E0D0 0%, #CC99FF 100%);
  color: #0D1117; border-radius: var(--vc76-radius); padding: 1.4rem;
  text-align: center; margin: 1.4rem 1.2rem;
}
.vc76-cta h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.vc76-cta p { font-size: 1.3rem; margin-bottom: 0.9rem; }
.vc76-cta .vc76-btn { background: #0D1117; color: var(--vc76-cyan); padding: 0.9rem 2rem; }

/* ===== FAQ ===== */
.vc76-faq-item { background: var(--vc76-bg-2); border-radius: 0.8rem; padding: 1rem 1.1rem; margin-bottom: 0.7rem; }
.vc76-faq-item h4 { font-size: 1.35rem; color: var(--vc76-primary); margin-bottom: 0.3rem; }
.vc76-faq-item p { font-size: 1.25rem; color: var(--vc76-text-dim); }

/* ===== SEO text ===== */
.vc76-seo-text { font-size: 1.3rem; color: var(--vc76-text-dim); line-height: 1.6; }

/* ===== Footer ===== */
.vc76-footer {
  background: var(--vc76-bg-2); padding: 1.6rem 1.2rem 2rem;
  border-top: 0.15rem solid var(--vc76-teal); margin-top: 1.5rem;
}
.vc76-footer-brand { font-size: 1.3rem; color: var(--vc76-text-dim); margin-bottom: 1rem; line-height: 1.6; }
.vc76-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.vc76-footer-promos .vc76-btn { font-size: 1.1rem; padding: 0.5rem 0.9rem; }
.vc76-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0.8rem; margin-bottom: 1rem; }
.vc76-footer-links a { font-size: 1.2rem; color: var(--vc76-cyan); }
.vc76-footer-copy { font-size: 1.1rem; color: var(--vc76-text-dim); border-top: 0.1rem solid rgba(95,158,160,0.3); padding-top: 0.8rem; }

/* ===== Bottom nav ===== */
.vc76-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto; height: 6.2rem;
  background: linear-gradient(180deg, #161B24 0%, #0D1117 100%);
  border-top: 0.15rem solid var(--vc76-primary);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -0.3rem 1rem rgba(0,0,0,0.4);
}
.vc76-bottomnav-btn {
  background: transparent; border: none; color: var(--vc76-text-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 6rem; min-height: 6rem; font-size: 1rem; cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease; gap: 0.2rem;
}
.vc76-bottomnav-btn .vc76-ico { font-size: 2.2rem; }
.vc76-bottomnav-btn:active { transform: scale(0.92); }
.vc76-bottomnav-btn.vc76-current { color: var(--vc76-primary); }
.vc76-bottomnav-btn.vc76-current .vc76-ico { color: var(--vc76-violet); }
.vc76-bottomnav-btn .material-symbols-outlined,
.vc76-bottomnav-btn .material-icons { font-size: 2.2rem; }

@media (min-width: 769px) {
  .vc76-bottomnav { display: none; }
  .vc76-menu-btn { display: none; }
}
