/* ============================================================
   bet apk (betapk.click) stylesheet
   Prefix: ve94-  /  CSS custom properties: --ve94-*
   Palette: #BAE1FF | #999999 | #0C0C0C | #48D1CC | #00BFFF
   Mobile-first, max content width 430px.
   ============================================================ */

:root {
  --ve94-primary: #00BFFF;
  --ve94-secondary: #48D1CC;
  --ve94-bg: #0C0C0C;
  --ve94-bg-alt: #161616;
  --ve94-text: #BAE1FF;
  --ve94-text-muted: #999999;
  --ve94-card: #1c1c1c;
  --ve94-border: #2a2a2a;
  --ve94-accent: #48D1CC;
  --ve94-gold: #FFD479;
  --ve94-danger: #FF6B6B;
  --ve94-radius: 14px;
  --ve94-radius-sm: 10px;
  --ve94-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Reset */
* { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'Segoe UI', sans-serif;
  background: var(--ve94-bg);
  color: var(--ve94-text);
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ve94-primary); text-decoration: none; }
a:hover { color: var(--ve94-secondary); }
h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.7rem; }
p { margin: 0 0 1em; }

/* Layout */
.ve94-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}
.ve94-wrapper { padding: 14px 0; }
.ve94-section { padding: 22px 0; border-bottom: 1px solid var(--ve94-border); }
.ve94-grid { display: grid; gap: 12px; }

/* Buttons */
.ve94-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border: none;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
}
.ve94-btn:hover { transform: translateY(-1px); }
.ve94-btn-primary { background: linear-gradient(135deg, var(--ve94-primary), var(--ve94-secondary)); color: #06121a; }
.ve94-btn-primary:hover { color: #06121a; box-shadow: 0 8px 22px rgba(0, 191, 255, 0.35); }
.ve94-btn-secondary { background: transparent; color: var(--ve94-text); border: 1.5px solid var(--ve94-primary); }
.ve94-btn-secondary:hover { color: var(--ve94-text); background: rgba(0, 191, 255, 0.12); }
.ve94-btn-gold { background: linear-gradient(135deg, var(--ve94-gold), #ffb74d); color: #2a1a00; }
.ve94-btn-block { width: 100%; }

/* Cards */
.ve94-card {
  background: var(--ve94-card);
  border: 1px solid var(--ve94-border);
  border-radius: var(--ve94-radius);
  padding: 16px;
  box-shadow: var(--ve94-shadow);
}
.ve94-card-title { color: var(--ve94-primary); font-size: 1.6rem; margin-bottom: 8px; }
.ve94-card-text { color: var(--ve94-text-muted); font-size: 1.35rem; line-height: 1.55; }

/* Header */
.ve94-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.96);
  border-bottom: 1px solid var(--ve94-border);
  backdrop-filter: blur(8px);
}
.ve94-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ve94-brand { display: flex; align-items: center; gap: 8px; color: var(--ve94-text); font-weight: 800; font-size: 1.7rem; }
.ve94-brand img { width: 30px; height: 30px; border-radius: 8px; }
.ve94-brand-name { background: linear-gradient(135deg, var(--ve94-primary), var(--ve94-secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ve94-header-actions { display: flex; align-items: center; gap: 8px; }
.ve94-icon-btn {
  background: transparent;
  border: none;
  color: var(--ve94-text);
  font-size: 2rem;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ve94-icon-btn:hover { background: rgba(0, 191, 255, 0.12); }

/* Spacer so fixed header does not cover content */
.ve94-header-spacer { height: 56px; }

/* Mobile dropdown menu */
.ve94-mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ve94-bg-alt);
  border-bottom: 1px solid var(--ve94-border);
  padding: 10px 14px 16px;
  max-height: 80vh;
  overflow-y: auto;
}
.ve94-mobile-menu.ve94-menu-open { display: block; }
.ve94-mobile-menu a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid var(--ve94-border);
  color: var(--ve94-text);
  font-size: 1.45rem;
}
.ve94-mobile-menu a:last-child { border-bottom: none; }

/* Hero */
.ve94-hero { padding-top: 8px; }
.ve94-carousel { position: relative; border-radius: var(--ve94-radius); overflow: hidden; box-shadow: var(--ve94-shadow); }
.ve94-carousel-track { position: relative; }
.ve94-carousel-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.ve94-carousel-slide.ve94-slide-active { display: block; }
.ve94-carousel-slide img { width: 100%; height: 190px; object-fit: cover; }
.ve94-carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.ve94-carousel-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0; }
.ve94-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ve94-border); cursor: pointer; transition: background 0.2s;
}
.ve94-carousel-dot.ve94-dot-active { background: var(--ve94-primary); }

/* Headline section */
.ve94-hero-headline {
  text-align: center;
  padding: 16px 0 6px;
}
.ve94-hero-headline h1 { color: var(--ve94-text); }
.ve94-hero-headline h1 span { color: var(--ve94-primary); }
.ve94-hero-cta { display: flex; gap: 10px; justify-content: center; margin-top: 10px; flex-wrap: wrap; }

/* Filter chips */
.ve94-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 14px;
  -webkit-overflow-scrolling: touch;
}
.ve94-filter-chip {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ve94-card);
  border: 1px solid var(--ve94-border);
  color: var(--ve94-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  white-space: nowrap;
}
.ve94-filter-chip.ve94-chip-active {
  background: linear-gradient(135deg, var(--ve94-primary), var(--ve94-secondary));
  color: #06121a;
  border-color: transparent;
  font-weight: 700;
}

/* Game list */
.ve94-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ve94-primary);
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.ve94-section-title i { font-size: 2rem; }
.ve94-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ve94-game-card {
  background: var(--ve94-card);
  border: 1px solid var(--ve94-border);
  border-radius: var(--ve94-radius-sm);
  padding: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.ve94-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--ve94-primary);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.2);
}
.ve94-game-card img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
.ve94-game-name {
  font-size: 1.2rem;
  color: var(--ve94-text);
  line-height: 1.3;
  min-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature / info lists */
.ve94-feature-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ve94-feature-item { display: flex; gap: 12px; align-items: flex-start; }
.ve94-feature-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0, 191, 255, 0.15);
  color: var(--ve94-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* RTP table */
.ve94-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.35rem; }
.ve94-rtp-table th, .ve94-rtp-table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid var(--ve94-border);
}
.ve94-rtp-table th { color: var(--ve94-primary); }
.ve94-rtp-value { color: var(--ve94-gold); font-weight: 700; }

/* Testimonials */
.ve94-testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ve94-testimonial {
  background: var(--ve94-card);
  border-radius: var(--ve94-radius-sm);
  padding: 14px;
  border-left: 3px solid var(--ve94-primary);
}
.ve94-testimonial-stars { color: var(--ve94-gold); font-size: 1.3rem; margin-bottom: 4px; }
.ve94-testimonial-author { color: var(--ve94-text-muted); font-size: 1.25rem; margin-top: 6px; }

/* Payment methods */
.ve94-payment-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ve94-payment-badge {
  background: var(--ve94-card);
  border: 1px solid var(--ve94-border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.25rem;
  color: var(--ve94-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Winners */
.ve94-winner-row { display: flex; flex-direction: column; gap: 8px; }
.ve94-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--ve94-card);
  border-radius: 10px;
  font-size: 1.3rem;
}
.ve94-winner-amount { color: var(--ve94-gold); font-weight: 700; }

/* App download CTA */
.ve94-app-cta {
  background: linear-gradient(135deg, rgba(0,191,255,0.15), rgba(72,209,204,0.1));
  border: 1px solid var(--ve94-primary);
  border-radius: var(--ve94-radius);
  padding: 18px;
  text-align: center;
}
.ve94-app-cta h3 { color: var(--ve94-primary); }
.ve94-app-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

/* FAQ */
.ve94-faq-item {
  background: var(--ve94-card);
  border: 1px solid var(--ve94-border);
  border-radius: var(--ve94-radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.ve94-faq-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--ve94-text);
  padding: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.ve94-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 14px;
  color: var(--ve94-text-muted);
  font-size: 1.3rem;
}
.ve94-faq-panel.ve94-faq-open { max-height: 320px; padding-bottom: 14px; }

/* Footer */
.ve94-footer {
  background: var(--ve94-bg-alt);
  border-top: 1px solid var(--ve94-border);
  padding: 26px 0 110px;
  margin-top: 20px;
}
.ve94-footer-brand { color: var(--ve94-text-muted); font-size: 1.3rem; line-height: 1.6; margin-bottom: 14px; }
.ve94-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 14px;
}
.ve94-footer-links a { color: var(--ve94-text); font-size: 1.25rem; }
.ve94-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.ve94-footer-copy { color: var(--ve94-text-muted); font-size: 1.15rem; border-top: 1px solid var(--ve94-border); padding-top: 12px; }

/* Bottom navigation */
.ve94-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: rgba(12, 12, 12, 0.98);
  border-top: 1px solid var(--ve94-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.ve94-bottom-nav-item {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--ve94-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.15s, transform 0.15s;
}
.ve94-bottom-nav-item i,
.ve94-bottom-nav-item .material-icons-outlined,
.ve94-bottom-nav-item ion-icon { font-size: 22px; }
.ve94-bottom-nav-item ion-icon { --ionicon-stroke-width: 32px; }
.ve94-bottom-nav-label { font-size: 1rem; line-height: 1; }
.ve94-bottom-nav-item:hover { color: var(--ve94-primary); transform: translateY(-1px); }
.ve94-bottom-nav-item.ve94-nav-active { color: var(--ve94-primary); }
.ve94-nav-promo { color: var(--ve94-gold); }
.ve94-nav-promo:hover { color: var(--ve94-gold); }
.ve94-nav-badge {
  position: absolute;
  top: 8px; right: 18px;
  background: var(--ve94-danger);
  color: #fff;
  font-size: 0.9rem;
  min-width: 15px; height: 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.ve94-bottom-nav-item { position: relative; }

/* Utility */
.ve94-text-center { text-align: center; }
.ve94-mt-12 { margin-top: 12px; }
.ve94-muted { color: var(--ve94-text-muted); }
.ve94-hide-mobile { display: none; }

/* Desktop: hide bottom nav, widen layout */
@media (min-width: 769px) {
  .ve94-bottom-nav { display: none; }
  .ve94-footer { padding-bottom: 26px; }
  .ve94-container { max-width: 960px; }
  .ve94-game-grid { grid-template-columns: repeat(6, 1fr); }
  .ve94-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ve94-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .ve94-footer-links { grid-template-columns: repeat(3, 1fr); }
  .ve94-hide-mobile { display: block; }
  .ve94-hide-desktop { display: none; }
  main { padding-bottom: 0 !important; }
}

/* Mobile bottom padding for fixed nav clearance */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
