/* 111bd basefiles CSS - all classes use vcfc- prefix */
:root {
  --vcfc-primary: #AD1457;
  --vcfc-accent: #FA8072;
  --vcfc-bg: #1E1E1E;
  --vcfc-bg2: #2a2a2a;
  --vcfc-bg3: #333333;
  --vcfc-text: #BBBBBB;
  --vcfc-text-light: #f5f5f5;
  --vcfc-border: #3a3a3a;
  --vcfc-gold: #FFD700;
  --vcfc-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", sans-serif;
  background: var(--vcfc-bg);
  color: var(--vcfc-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

/* ===== Header ===== */
.vcfc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1E1E1E 0%, #2a0a18 100%);
  border-bottom: 2px solid var(--vcfc-primary);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vcfc-logo { display: flex; align-items: center; gap: 0.6rem; }
.vcfc-logo img { width: 2.8rem; height: 2.8rem; border-radius: 6px; }
.vcfc-logo span {
  font-size: 1.6rem; font-weight: 800; color: var(--vcfc-accent);
  letter-spacing: 0.5px;
}
.vcfc-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.vcfc-btn {
  border: none; border-radius: 20px; padding: 0.6rem 1.2rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  min-height: 36px; transition: transform 0.15s, opacity 0.15s;
}
.vcfc-btn:active { transform: scale(0.95); }
.vcfc-btn-login {
  background: transparent; color: var(--vcfc-text-light);
  border: 1px solid var(--vcfc-text);
}
.vcfc-btn-register {
  background: linear-gradient(90deg, var(--vcfc-primary), var(--vcfc-accent));
  color: #fff; box-shadow: 0 2px 8px rgba(173,20,87,0.4);
}
.vcfc-menu-btn {
  background: transparent; border: none; color: var(--vcfc-text-light);
  font-size: 2rem; cursor: pointer; padding: 0 0.4rem; min-width: 36px;
}

/* ===== Mobile Menu ===== */
.vcfc-mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: var(--vcfc-bg2);
  border-bottom: 2px solid var(--vcfc-primary);
  z-index: 9999;
  padding: 0.5rem 0;
}
.vcfc-mobile-menu.vcfc-menu-open { display: block; }
.vcfc-mobile-menu a {
  display: block; padding: 1rem 1.5rem; color: var(--vcfc-text-light);
  font-size: 1.4rem; border-bottom: 1px solid var(--vcfc-border);
}
.vcfc-mobile-menu a:active { background: var(--vcfc-bg3); }

/* ===== Main ===== */
.vcfc-main { padding-top: 60px; padding-bottom: 80px; }

/* ===== Carousel ===== */
.vcfc-carousel {
  position: relative; margin: 1rem; border-radius: var(--vcfc-radius);
  overflow: hidden; aspect-ratio: 16/9; background: var(--vcfc-bg2);
}
.vcfc-slide {
  display: none; width: 100%; height: 100%; cursor: pointer;
}
.vcfc-slide.vcfc-slide-active { display: block; }
.vcfc-slide img { width: 100%; height: 100%; object-fit: cover; }
.vcfc-dots {
  position: absolute; bottom: 0.6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.5rem;
}
.vcfc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5);
  cursor: pointer; border: none;
}
.vcfc-dot.vcfc-dot-active { background: var(--vcfc-accent); }

/* ===== Sections ===== */
.vcfc-section { padding: 1.5rem 1rem; }
.vcfc-section-title {
  font-size: 1.8rem; font-weight: 800; color: var(--vcfc-text-light);
  margin-bottom: 1rem; padding-left: 0.8rem;
  border-left: 4px solid var(--vcfc-accent);
}
.vcfc-section-title h1, .vcfc-section-title h2 {
  font-size: inherit; color: inherit; font-weight: inherit;
}
.vcfc-h1 {
  font-size: 2rem; font-weight: 800; color: var(--vcfc-text-light);
  margin-bottom: 1rem; line-height: 1.6rem;
}
.vcfc-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--vcfc-accent);
  margin: 1.2rem 0 0.8rem;
}
.vcfc-h3 {
  font-size: 1.5rem; font-weight: 700; color: var(--vcfc-text-light);
  margin: 1rem 0 0.6rem;
}
.vcfc-text { color: var(--vcfc-text); margin-bottom: 0.8rem; }
.vcfc-promo-link {
  color: var(--vcfc-accent); font-weight: 700; cursor: pointer;
}
.vcfc-promo-link:hover { text-decoration: underline; }

/* ===== Category tabs ===== */
.vcfc-cat-tabs {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0;
  margin-bottom: 1rem; -webkit-overflow-scrolling: touch;
}
.vcfc-cat-tab {
  flex: 0 0 auto; padding: 0.5rem 1rem; border-radius: 16px;
  background: var(--vcfc-bg3); color: var(--vcfc-text-light);
  font-size: 1.2rem; cursor: pointer; border: 1px solid var(--vcfc-border);
  white-space: nowrap;
}
.vcfc-cat-tab.vcfc-cat-tab-active {
  background: linear-gradient(90deg, var(--vcfc-primary), var(--vcfc-accent));
  border-color: transparent; color: #fff;
}

/* ===== Game grid ===== */
.vcfc-game-group { margin-bottom: 1.5rem; }
.vcfc-game-group-title {
  font-size: 1.5rem; font-weight: 700; color: var(--vcfc-gold);
  margin-bottom: 0.8rem; padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--vcfc-border);
}
.vcfc-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}
.vcfc-game-card { cursor: pointer; text-align: center; }
.vcfc-game-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--vcfc-border);
  transition: transform 0.15s, border-color 0.15s;
}
.vcfc-game-card:active img { transform: scale(0.94); border-color: var(--vcfc-accent); }
.vcfc-game-name {
  font-size: 1rem; color: var(--vcfc-text-light); margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ===== Cards / features ===== */
.vcfc-card {
  background: var(--vcfc-bg2); border-radius: var(--vcfc-radius);
  padding: 1.2rem; margin-bottom: 1rem; border: 1px solid var(--vcfc-border);
}
.vcfc-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.vcfc-feature-item {
  background: var(--vcfc-bg2); border-radius: 8px; padding: 1rem;
  text-align: center; border: 1px solid var(--vcfc-border);
}
.vcfc-feature-item i { font-size: 2.4rem; color: var(--vcfc-accent); }
.vcfc-feature-item h3 { font-size: 1.3rem; margin: 0.4rem 0; color: var(--vcfc-text-light); }
.vcfc-feature-item p { font-size: 1.1rem; color: var(--vcfc-text); }

/* ===== Testimonials ===== */
.vcfc-testimonial {
  background: var(--vcfc-bg2); border-radius: 8px; padding: 1rem;
  margin-bottom: 0.8rem; border-left: 3px solid var(--vcfc-accent);
}
.vcfc-testimonial-name { font-weight: 700; color: var(--vcfc-gold); font-size: 1.2rem; }
.vcfc-testimonial-text { color: var(--vcfc-text); font-size: 1.2rem; margin-top: 0.3rem; }

/* ===== Winners ===== */
.vcfc-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--vcfc-border); font-size: 1.2rem;
}
.vcfc-winner-name { color: var(--vcfc-text-light); }
.vcfc-winner-amount { color: var(--vcfc-gold); font-weight: 700; }

/* ===== Payment methods ===== */
.vcfc-pay-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.vcfc-pay-item {
  background: var(--vcfc-bg2); border-radius: 8px; padding: 0.8rem;
  text-align: center; border: 1px solid var(--vcfc-border);
  font-size: 1.1rem; color: var(--vcfc-text-light);
}
.vcfc-pay-item i { font-size: 2rem; color: var(--vcfc-accent); display: block; margin-bottom: 0.3rem; }

/* ===== RTP table ===== */
.vcfc-rpt-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.vcfc-rpt-table th, .vcfc-rpt-table td {
  padding: 0.6rem; text-align: left; border-bottom: 1px solid var(--vcfc-border);
}
.vcfc-rpt-table th { color: var(--vcfc-accent); }
.vcfc-rpt-table td { color: var(--vcfc-text-light); }

/* ===== CTA banner ===== */
.vcfc-cta {
  background: linear-gradient(135deg, var(--vcfc-primary), #6a0d34);
  border-radius: var(--vcfc-radius); padding: 1.5rem; text-align: center;
  margin: 1rem;
}
.vcfc-cta h2 { color: #fff; margin-bottom: 0.5rem; }
.vcfc-cta p { color: #f5e6ec; margin-bottom: 1rem; font-size: 1.3rem; }
.vcfc-cta-btn {
  display: inline-block; background: var(--vcfc-gold); color: #1E1E1E;
  padding: 0.9rem 2rem; border-radius: 24px; font-weight: 800;
  font-size: 1.4rem; cursor: pointer; border: none;
}

/* ===== FAQ ===== */
.vcfc-faq-item {
  background: var(--vcfc-bg2); border-radius: 8px; padding: 1rem;
  margin-bottom: 0.6rem; border: 1px solid var(--vcfc-border);
}
.vcfc-faq-item h3 { color: var(--vcfc-accent); font-size: 1.3rem; margin-bottom: 0.4rem; }
.vcfc-faq-item p { color: var(--vcfc-text); font-size: 1.2rem; }

/* ===== Footer ===== */
.vcfc-footer {
  background: #161616; padding: 1.5rem 1rem; border-top: 2px solid var(--vcfc-primary);
}
.vcfc-footer-brand { color: var(--vcfc-text); font-size: 1.2rem; margin-bottom: 1rem; }
.vcfc-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 1rem;
}
.vcfc-footer-links a { color: var(--vcfc-text-light); font-size: 1.2rem; }
.vcfc-footer-promo {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
}
.vcfc-footer-promo button {
  background: linear-gradient(90deg, var(--vcfc-primary), var(--vcfc-accent));
  color: #fff; border: none; border-radius: 18px; padding: 0.5rem 1rem;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
}
.vcfc-footer-copy { color: var(--vcfc-text); font-size: 1.1rem; text-align: center; border-top: 1px solid var(--vcfc-border); padding-top: 1rem; }

/* ===== Bottom nav ===== */
.vcfc-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #2a0a18, #1E1E1E);
  border-top: 2px solid var(--vcfc-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; z-index: 1000;
}
.vcfc-nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px; background: transparent; border: none;
  color: var(--vcfc-text); font-size: 1rem; cursor: pointer; gap: 2px;
  text-decoration: none; transition: color 0.15s, transform 0.15s;
}
.vcfc-nav-item i { font-size: 22px; }
.vcfc-nav-item .material-icons-outlined { font-size: 24px; }
.vcfc-nav-item:active { transform: scale(0.92); color: var(--vcfc-accent); }
.vcfc-nav-item.vcfc-nav-active { color: var(--vcfc-accent); }
.vcfc-nav-badge {
  position: absolute; top: 2px; right: 14px; background: var(--vcfc-gold);
  color: #1E1E1E; font-size: 0.9rem; font-weight: 700; border-radius: 8px;
  padding: 0 4px; min-width: 14px; text-align: center;
}

/* ===== Desktop ===== */
@media (max-width: 768px) {
  .vcfc-main { padding-bottom: 80px; }
}

@media (min-width: 769px) {
  .vcfc-bottom-nav { display: none; }
  body { max-width: 430px; }
  .vcfc-main { padding-bottom: 2rem; }
}
