/* fa9.click - Core Stylesheet
   All custom class names use the "vcee-" prefix.
   Color palette: #0D1117 (bg) | #F0F0F0 (text) | #CD853F (accent) */
:root {
  --vcee-bg: #0D1117;
  --vcee-bg-2: #161B22;
  --vcee-bg-3: #1F2630;
  --vcee-text: #F0F0F0;
  --vcee-text-dim: #A8B0B8;
  --vcee-accent: #CD853F;
  --vcee-accent-2: #E0A458;
  --vcee-accent-soft: rgba(205, 133, 63, 0.16);
  --vcee-border: rgba(205, 133, 63, 0.28);
  --vcee-radius: 14px;
  --vcee-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  --vcee-header-h: 60px;
  --vcee-bottomnav-h: 62px;
}

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

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

html { font-size: 62.5%; }

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, system-ui, sans-serif;
  background: var(--vcee-bg);
  color: var(--vcee-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

/* ===== Header ===== */
.vcee-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--vcee-bg-2);
  border-bottom: 1px solid var(--vcee-border);
  box-shadow: var(--vcee-shadow);
}
.vcee-header-inner {
  max-width: 430px; margin: 0 auto;
  height: var(--vcee-header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; gap: 0.8rem;
}
.vcee-logo { display: flex; align-items: center; gap: 0.7rem; color: var(--vcee-text); }
.vcee-logo img { width: 30px; height: 30px; border-radius: 7px; }
.vcee-logo-name { font-size: 1.8rem; font-weight: 800; letter-spacing: 0.5px; }
.vcee-logo-name span { color: var(--vcee-accent); }
.vcee-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.vcee-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 40px; padding: 0 1.2rem; border-radius: 10px;
  font-size: 1.35rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.vcee-btn:active { transform: scale(0.96); }
.vcee-btn-primary { background: linear-gradient(135deg, var(--vcee-accent), var(--vcee-accent-2)); color: #1a1206; }
.vcee-btn-secondary { background: transparent; color: var(--vcee-accent-2); border: 1px solid var(--vcee-border); }
.vcee-btn-block { width: 100%; padding: 1.1rem; font-size: 1.6rem; }
.vcee-menu-btn {
  background: transparent; border: 1px solid var(--vcee-border); color: var(--vcee-text);
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.vcee-menu-btn .material-icons-outlined { font-size: 24px; }

/* ===== Mobile Menu ===== */
.vcee-mobile-menu {
  position: fixed; top: var(--vcee-header-h); left: 0; right: 0; z-index: 9999;
  background: var(--vcee-bg-2); border-bottom: 1px solid var(--vcee-border);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.vcee-mobile-menu.vcee-menu-open { max-height: 80vh; overflow-y: auto; box-shadow: var(--vcee-shadow); }
.vcee-mobile-menu-inner { max-width: 430px; margin: 0 auto; padding: 1rem 1.2rem 1.4rem; }
.vcee-menu-title { font-size: 1.2rem; color: var(--vcee-text-dim); text-transform: uppercase; letter-spacing: 1px; margin: 0.6rem 0 0.4rem; }
.vcee-menu-link {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem; border-radius: 10px; color: var(--vcee-text);
  font-size: 1.45rem; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vcee-menu-link:hover { background: var(--vcee-accent-soft); text-decoration: none; }
.vcee-menu-link i, .vcee-menu-link .material-icons-outlined { color: var(--vcee-accent); width: 24px; text-align: center; }

/* ===== Main ===== */
.vcee-main { padding-top: calc(var(--vcee-header-h) + 0.8rem); padding-bottom: 1rem; }

/* ===== Carousel ===== */
.vcee-carousel { position: relative; border-radius: var(--vcee-radius); overflow: hidden; box-shadow: var(--vcee-shadow); }
.vcee-carousel-track { position: relative; width: 100%; aspect-ratio: 16/9; }
.vcee-carousel-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  cursor: pointer;
}
.vcee-carousel-slide.vcee-active { opacity: 1; }
.vcee-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.vcee-carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--vcee-text); font-size: 1.4rem; font-weight: 600;
}
.vcee-carousel-dots { position: absolute; bottom: 0.8rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.5rem; }
.vcee-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(240,240,240,0.4); border: none; cursor: pointer; }
.vcee-carousel-dot.vcee-active { background: var(--vcee-accent); width: 18px; border-radius: 4px; }

/* ===== Section ===== */
.vcee-section { padding: 1.6rem 0; }
.vcee-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.vcee-section-title { font-size: 1.8rem; font-weight: 800; color: var(--vcee-text); }
.vcee-section-title .vcee-accent-text { color: var(--vcee-accent); }
.vcee-section-sub { font-size: 1.3rem; color: var(--vcee-text-dim); margin-top: 0.2rem; }
.vcee-h1 { font-size: 2rem; font-weight: 800; line-height: 1.35; margin-bottom: 0.6rem; }
.vcee-h1 span { color: var(--vcee-accent); }
.vcee-lead { font-size: 1.4rem; color: var(--vcee-text-dim); margin-bottom: 1rem; }

/* ===== Game Grid ===== */
.vcee-games { margin: 0.4rem 0; }
.vcee-game-cat { margin-bottom: 1.6rem; }
.vcee-cat-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.55rem; font-weight: 700; color: var(--vcee-accent);
  margin-bottom: 0.8rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--vcee-border);
}
.vcee-cat-title i { font-size: 1.8rem; }
.vcee-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.vcee-game-card {
  background: var(--vcee-bg-2); border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05); cursor: pointer;
  transition: transform 0.18s ease, border-color 0.2s ease;
}
.vcee-game-card:active { transform: scale(0.96); border-color: var(--vcee-accent); }
.vcee-game-thumb { width: 100%; aspect-ratio: 1/1; background: var(--vcee-bg-3); }
.vcee-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vcee-game-name {
  padding: 0.5rem 0.4rem; font-size: 1.1rem; text-align: center; color: var(--vcee-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-height: 2.6rem;
}

/* ===== Feature / Card ===== */
.vcee-card {
  background: var(--vcee-bg-2); border-radius: var(--vcee-radius); padding: 1.3rem;
  border: 1px solid rgba(255,255,255,0.05); box-shadow: var(--vcee-shadow);
}
.vcee-card-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--vcee-text); }
.vcee-card-title i { color: var(--vcee-accent); margin-right: 0.4rem; }
.vcee-card p { color: var(--vcee-text-dim); font-size: 1.35rem; }
.vcee-feature-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.vcee-feature-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--vcee-bg-2); padding: 1.1rem; border-radius: 12px;
  border-left: 3px solid var(--vcee-accent);
}
.vcee-feature-icon {
  flex: 0 0 42px; height: 42px; border-radius: 10px;
  background: var(--vcee-accent-soft); display: inline-flex; align-items: center; justify-content: center;
  color: var(--vcee-accent);
}
.vcee-feature-icon i, .vcee-feature-icon .material-icons-outlined { font-size: 22px; }
.vcee-feature-text h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.vcee-feature-text p { font-size: 1.25rem; color: var(--vcee-text-dim); }

/* ===== Promo link inline ===== */
.vcee-link-inline { color: var(--vcee-accent); font-weight: 700; cursor: pointer; }

/* ===== Testimonials ===== */
.vcee-testimonials { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.vcee-testimonial {
  background: var(--vcee-bg-2); border-radius: 12px; padding: 1.1rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.vcee-testimonial-stars { color: var(--vcee-accent); margin-bottom: 0.4rem; font-size: 1.3rem; }
.vcee-testimonial-text { font-size: 1.3rem; color: var(--vcee-text); margin-bottom: 0.5rem; }
.vcee-testimonial-author { font-size: 1.15rem; color: var(--vcee-text-dim); }

/* ===== Payment ===== */
.vcee-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.vcee-payment-item {
  background: var(--vcee-bg-2); border-radius: 10px; padding: 0.8rem 0.4rem;
  text-align: center; font-size: 1.1rem; color: var(--vcee-text-dim);
  border: 1px solid rgba(255,255,255,0.05);
}
.vcee-payment-item i, .vcee-payment-item .material-icons-outlined { font-size: 24px; color: var(--vcee-accent); display: block; margin-bottom: 0.3rem; }

/* ===== Winners ===== */
.vcee-winners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.vcee-winner {
  background: var(--vcee-bg-2); border-radius: 10px; padding: 0.8rem; text-align: center;
  border: 1px solid var(--vcee-border);
}
.vcee-winner-name { font-size: 1.2rem; color: var(--vcee-text); font-weight: 600; }
.vcee-winner-amount { font-size: 1.35rem; color: var(--vcee-accent); font-weight: 800; margin-top: 0.2rem; }
.vcee-winner-game { font-size: 1.05rem; color: var(--vcee-text-dim); margin-top: 0.2rem; }

/* ===== FAQ ===== */
.vcee-faq-item {
  background: var(--vcee-bg-2); border-radius: 10px; margin-bottom: 0.7rem;
  border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
}
.vcee-faq-q {
  width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
  padding: 1rem 1.1rem; color: var(--vcee-text); font-size: 1.35rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 0.6rem;
}
.vcee-faq-q .vcee-faq-icon { color: var(--vcee-accent); transition: transform 0.2s ease; }
.vcee-faq-item.vcee-faq-open .vcee-faq-icon { transform: rotate(45deg); }
.vcee-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 1.1rem; color: var(--vcee-text-dim); font-size: 1.25rem; }
.vcee-faq-item.vcee-faq-open .vcee-faq-a { max-height: 320px; padding-bottom: 1rem; }

/* ===== CTA banner ===== */
.vcee-cta {
  background: linear-gradient(135deg, var(--vcee-accent-soft), rgba(205,133,63,0.05));
  border: 1px solid var(--vcee-border); border-radius: var(--vcee-radius);
  padding: 1.4rem; text-align: center; margin: 1rem 0;
}
.vcee-cta h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.vcee-cta p { font-size: 1.3rem; color: var(--vcee-text-dim); margin-bottom: 1rem; }

/* ===== SEO text ===== */
.vcee-seo-text { font-size: 1.3rem; color: var(--vcee-text-dim); line-height: 1.7; }
.vcee-seo-text h2, .vcee-seo-text h3 { color: var(--vcee-text); margin: 1rem 0 0.5rem; }
.vcee-seo-text p { margin-bottom: 0.7rem; }

/* ===== Footer ===== */
.vcee-footer { background: var(--vcee-bg-2); border-top: 1px solid var(--vcee-border); margin-top: 1.5rem; }
.vcee-footer-inner { max-width: 430px; margin: 0 auto; padding: 1.6rem 1.2rem 2rem; }
.vcee-footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--vcee-accent); margin-bottom: 0.4rem; }
.vcee-footer-desc { font-size: 1.25rem; color: var(--vcee-text-dim); margin-bottom: 1rem; }
.vcee-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.vcee-footer-promos .vcee-btn { flex: 1 1 45%; min-width: 140px; }
.vcee-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1rem; margin: 1rem 0; }
.vcee-footer-links a { font-size: 1.2rem; color: var(--vcee-text-dim); }
.vcee-footer-links a:hover { color: var(--vcee-accent); }
.vcee-footer-copy { font-size: 1.1rem; color: var(--vcee-text-dim); text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; margin-top: 0.8rem; }

/* ===== Bottom Nav ===== */
.vcee-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--vcee-bottomnav-h);
  background: var(--vcee-bg-2); border-top: 1px solid var(--vcee-border);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.4);
}
.vcee-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--vcee-text-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  cursor: pointer; font-size: 1.05rem; transition: color 0.18s ease, transform 0.18s ease;
}
.vcee-bottomnav-btn i, .vcee-bottomnav-btn .material-icons-outlined, .vcee-bottomnav-btn .icon { font-size: 24px; }
.vcee-bottomnav-btn:active { transform: scale(0.92); }
.vcee-bottomnav-btn:hover { color: var(--vcee-text); }
.vcee-bottomnav-btn.vcee-nav-active { color: var(--vcee-accent); }
.vcee-bottomnav-btn.vcee-nav-active::before {
  content: ""; position: absolute; top: 0; width: 28px; height: 3px; border-radius: 0 0 4px 4px;
  background: var(--vcee-accent);
}
.vcee-bottomnav-btn-promo { color: var(--vcee-accent-2); }
.vcee-bottomnav-label { font-size: 1.05rem; }

/* ===== Reveal animation ===== */
.vcee-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.vcee-reveal.vcee-visible { opacity: 1; transform: translateY(0); }

/* ===== Mobile padding ===== */
@media (max-width: 768px) {
  .vcee-main { padding-bottom: calc(var(--vcee-bottomnav-h) + 1rem); }
  .vcee-footer-inner { padding-bottom: calc(2rem + var(--vcee-bottomnav-h)); }
}

/* ===== Desktop ===== */
@media (min-width: 769px) {
  .vcee-container { max-width: 760px; }
  .vcee-header-inner { max-width: 760px; }
  .vcee-mobile-menu-inner { max-width: 760px; }
  .vcee-footer-inner { max-width: 760px; }
  .vcee-bottomnav { display: none; }
  .vcee-game-grid { grid-template-columns: repeat(5, 1fr); }
  .vcee-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .vcee-testimonials { grid-template-columns: repeat(2, 1fr); }
  .vcee-winners { grid-template-columns: repeat(4, 1fr); }
}
