/* theme-e0fe.css — CLB88 base stylesheet. All classes use prefix "vebd-". */
/* Comments in English. Mobile-first; root font-size 62.5% for rem units. */

:root {
  --vebd-primary: #FFCC02;
  --vebd-primary-dark: #e6b800;
  --vebd-bg: #0C0C0C;
  --vebd-bg-2: #161616;
  --vebd-bg-3: #1f1f1f;
  --vebd-text: #FFFFFF;
  --vebd-text-soft: #FFCCDB;
  --vebd-text-mute: #b8b8b8;
  --vebd-accent: #FFCCDB;
  --vebd-border: #2a2a2a;
  --vebd-success: #34d399;
  --vebd-danger: #f87171;
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  background: var(--vebd-bg);
  color: var(--vebd-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.vebd-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.vebd-wrapper { padding: 1rem 0; }
.vebd-hidden { display: none !important; }

/* ===== Header ===== */
.vebd-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(180deg, #0C0C0C 0%, #161616 100%);
  border-bottom: 1px solid var(--vebd-border);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; height: 5.4rem;
}
.vebd-brand { display: flex; align-items: center; gap: 0.6rem; }
.vebd-brand-logo { width: 3rem; height: 3rem; border-radius: 0.6rem; background: var(--vebd-primary); display: flex; align-items: center; justify-content: center; color: var(--vebd-bg); font-weight: 800; font-size: 1.6rem; }
.vebd-brand-name { font-size: 1.6rem; font-weight: 800; color: var(--vebd-primary); letter-spacing: 0.04rem; }
.vebd-brand-name small { display: block; font-size: 0.95rem; color: var(--vebd-text-mute); font-weight: 400; }
.vebd-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.vebd-btn {
  border: none; cursor: pointer; font-weight: 700;
  padding: 0.7rem 1.2rem; border-radius: 2rem;
  font-size: 1.25rem; line-height: 1; transition: transform 0.15s, opacity 0.15s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.vebd-btn:active { transform: scale(0.95); }
.vebd-btn-primary { background: var(--vebd-primary); color: var(--vebd-bg); }
.vebd-btn-ghost { background: transparent; color: var(--vebd-text); border: 1px solid var(--vebd-primary); }
.vebd-btn-block { width: 100%; justify-content: center; padding: 1rem; font-size: 1.4rem; }

/* Hamburger */
.vebd-menu-btn {
  background: transparent; border: 1px solid var(--vebd-border);
  color: var(--vebd-primary); width: 3.4rem; height: 3.4rem;
  border-radius: 0.6rem; font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
}

/* Mobile expandable menu */
.vebd-mobile-menu {
  position: fixed; top: 5.4rem; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: var(--vebd-bg-2); border-bottom: 1px solid var(--vebd-border);
  padding: 1rem 1.2rem 1.4rem; z-index: 9999;
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
}
.vebd-mobile-menu.vebd-menu-open { max-height: 32rem; padding: 1rem 1.2rem 1.4rem; }
.vebd-mobile-menu a {
  display: block; color: var(--vebd-text); padding: 0.85rem 0.6rem;
  border-bottom: 1px solid var(--vebd-border); font-size: 1.3rem;
}
.vebd-mobile-menu a:last-child { border-bottom: none; }
.vebd-mobile-menu a i { color: var(--vebd-primary); margin-right: 0.5rem; }

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

.vebd-section { padding: 1.6rem 0; }
.vebd-section-title {
  font-size: 1.7rem; font-weight: 800; color: var(--vebd-text);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem;
}
.vebd-section-title i { color: var(--vebd-primary); }
.vebd-section-title small { font-size: 1.15rem; color: var(--vebd-text-mute); font-weight: 400; margin-left: auto; }

/* ===== Hero carousel ===== */
.vebd-carousel {
  position: relative; border-radius: 1rem; overflow: hidden;
  height: 17rem; background: var(--vebd-bg-3); margin-top: 0.6rem;
}
.vebd-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.vebd-slide.vebd-slide-active { opacity: 1; }
.vebd-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vebd-slide-caption {
  position: relative; z-index: 2; color: var(--vebd-text);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 1.4rem 1rem 1rem; width: 100%; left: -1rem; bottom: -1rem;
}
.vebd-slide-caption h3 { font-size: 1.5rem; color: var(--vebd-primary); margin-bottom: 0.3rem; }
.vebd-slide-caption p { font-size: 1.15rem; color: var(--vebd-text-soft); }
.vebd-dots {
  position: absolute; bottom: 0.6rem; right: 0.8rem; z-index: 3;
  display: flex; gap: 0.4rem;
}
.vebd-dot { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: rgba(255,255,255,0.4); }
.vebd-dot.vebd-dot-active { background: var(--vebd-primary); }

/* ===== Game grids ===== */
.vebd-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.vebd-grid-4 { grid-template-columns: repeat(4, 1fr); }
.vebd-game-card {
  background: var(--vebd-bg-2); border-radius: 0.8rem; overflow: hidden;
  border: 1px solid var(--vebd-border); text-align: center; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.vebd-game-card:active { transform: scale(0.96); border-color: var(--vebd-primary); }
.vebd-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #222; }
.vebd-game-card span { display: block; padding: 0.45rem 0.3rem; font-size: 1.05rem; color: var(--vebd-text-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.vebd-row-scroll {
  display: flex; gap: 0.7rem; overflow-x: auto; padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.vebd-row-scroll::-webkit-scrollbar { display: none; }
.vebd-row-scroll .vebd-game-card { flex: 0 0 7.5rem; scroll-snap-align: start; }

.vebd-cat-head {
  display: flex; align-items: center; justify-content: space-between; margin: 1.4rem 0 0.7rem;
}
.vebd-cat-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--vebd-primary); color: var(--vebd-bg);
  font-weight: 800; padding: 0.4rem 0.9rem; border-radius: 1.5rem; font-size: 1.2rem;
}

/* ===== Feature blocks ===== */
.vebd-card {
  background: var(--vebd-bg-2); border: 1px solid var(--vebd-border);
  border-radius: 1rem; padding: 1.1rem; margin-bottom: 0.8rem;
}
.vebd-card h3 { font-size: 1.35rem; color: var(--vebd-primary); margin-bottom: 0.5rem; }
.vebd-card p { font-size: 1.2rem; color: var(--vebd-text-soft); margin-bottom: 0.5rem; }
.vebd-card a { font-weight: 700; }

.vebd-feature-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem;
}
.vebd-feature-item {
  background: var(--vebd-bg-2); border: 1px solid var(--vebd-border);
  border-radius: 0.8rem; padding: 0.9rem; text-align: center;
}
.vebd-feature-item i { font-size: 2.2rem; color: var(--vebd-primary); }
.vebd-feature-item h4 { font-size: 1.2rem; color: var(--vebd-text); margin: 0.3rem 0; }
.vebd-feature-item p { font-size: 1.05rem; color: var(--vebd-text-mute); }

/* ===== Testimonials / Winners ===== */
.vebd-testi {
  background: var(--vebd-bg-2); border-left: 3px solid var(--vebd-primary);
  padding: 0.8rem 1rem; border-radius: 0.6rem; margin-bottom: 0.7rem;
}
.vebd-testi p { font-size: 1.15rem; color: var(--vebd-text); font-style: italic; }
.vebd-testi small { color: var(--vebd-primary); font-weight: 700; }

.vebd-winner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--vebd-bg-2); padding: 0.6rem 0.9rem; border-radius: 0.6rem;
  margin-bottom: 0.5rem; border: 1px solid var(--vebd-border);
}
.vebd-winner span { font-size: 1.15rem; }
.vebd-winner b { color: var(--vebd-primary); }

/* ===== Payment logos ===== */
.vebd-pay-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vebd-pay {
  flex: 1 1 calc(33% - 0.5rem); background: #fff; color: #0C0C0C;
  border-radius: 0.4rem; padding: 0.6rem; text-align: center;
  font-weight: 700; font-size: 1.05rem; min-width: 0;
}

/* ===== RTP table ===== */
.vebd-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.1rem; }
.vebd-rtp-table th, .vebd-rtp-table td { padding: 0.6rem; border-bottom: 1px solid var(--vebd-border); text-align: left; }
.vebd-rtp-table th { color: var(--vebd-primary); }
.vebd-rtp-bar { height: 0.6rem; background: var(--vebd-bg-3); border-radius: 0.3rem; overflow: hidden; }
.vebd-rtp-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--vebd-primary), var(--vebd-accent)); }

/* ===== FAQ ===== */
.vebd-faq details {
  background: var(--vebd-bg-2); border: 1px solid var(--vebd-border);
  border-radius: 0.7rem; padding: 0.8rem 1rem; margin-bottom: 0.5rem;
}
.vebd-faq summary { font-weight: 700; color: var(--vebd-primary); cursor: pointer; font-size: 1.2rem; }
.vebd-faq details[open] summary { margin-bottom: 0.5rem; }
.vebd-faq details p { font-size: 1.15rem; color: var(--vebd-text-soft); }

/* ===== CTA band ===== */
.vebd-cta {
  background: linear-gradient(135deg, var(--vebd-primary), var(--vebd-accent));
  color: var(--vebd-bg); border-radius: 1rem; padding: 1.2rem; text-align: center; margin: 1rem 0;
}
.vebd-cta h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.vebd-cta p { font-size: 1.15rem; margin-bottom: 0.7rem; }
.vebd-cta .vebd-btn { background: var(--vebd-bg); color: var(--vebd-primary); }

/* ===== SEO long text ===== */
.vebd-seo { background: var(--vebd-bg-2); padding: 1.1rem; border-radius: 0.8rem; }
.vebd-seo h2 { color: var(--vebd-primary); font-size: 1.4rem; margin: 0.8rem 0 0.4rem; }
.vebd-seo h2:first-child { margin-top: 0; }
.vebd-seo h3 { color: var(--vebd-text); font-size: 1.2rem; margin: 0.6rem 0 0.3rem; }
.vebd-seo p { font-size: 1.15rem; color: var(--vebd-text-soft); margin-bottom: 0.5rem; }
.vebd-seo ul { padding-left: 1.6rem; margin-bottom: 0.5rem; }
.vebd-seo li { font-size: 1.15rem; color: var(--vebd-text-soft); }

/* ===== Step cards (help pages) ===== */
.vebd-step {
  display: flex; gap: 0.9rem; background: var(--vebd-bg-2);
  border: 1px solid var(--vebd-border); border-radius: 1rem;
  padding: 1rem; margin-bottom: 0.8rem;
}
.vebd-step-num {
  flex: 0 0 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--vebd-primary); color: var(--vebd-bg);
  font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.vebd-step-body { flex: 1; min-width: 0; }
.vebd-step h3 { font-size: 1.3rem; color: var(--vebd-primary); margin-bottom: 0.4rem; }
.vebd-step p, .vebd-step li { font-size: 1.15rem; color: var(--vebd-text-soft); }
.vebd-step ul, .vebd-step ol { padding-left: 1.6rem; margin-top: 0.3rem; }
.vebd-step .vebd-btn { margin-top: 0.5rem; }

/* Small chips for FAQ topics */
.vebd-chip {
  display: inline-block; background: var(--vebd-bg-3); border: 1px solid var(--vebd-border);
  color: var(--vebd-text-soft); border-radius: 1.2rem; padding: 0.25rem 0.8rem;
  font-size: 1.05rem; margin: 0.2rem 0.2rem 0 0;
}

/* ===== Footer ===== */
.vebd-footer { background: #050505; border-top: 1px solid var(--vebd-border); padding: 1.4rem 1.2rem 2rem; }
.vebd-footer p { font-size: 1.1rem; color: var(--vebd-text-mute); margin-bottom: 0.8rem; }
.vebd-footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; margin: 0.6rem 0; }
.vebd-footer-links a { color: var(--vebd-text-soft); font-size: 1.1rem; }
.vebd-footer-copy { font-size: 1rem; color: #777; margin-top: 1rem; border-top: 1px solid var(--vebd-border); padding-top: 1rem; }

/* ===== Bottom nav ===== */
.vebd-bottomnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; height: 6.2rem;
  background: linear-gradient(0deg, #050505, #161616);
  border-top: 1px solid var(--vebd-primary);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000; padding: 0.3rem 0;
}
.vebd-navbtn {
  flex: 1; min-width: 6rem; min-height: 5.6rem; background: transparent; border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--vebd-text-mute); cursor: pointer; gap: 0.2rem; transition: color 0.15s, transform 0.15s;
}
.vebd-navbtn i, .vebd-navbtn .material-icons-outlined, .vebd-navbtn .ion { font-size: 2.2rem; }
.vebd-navbtn span { font-size: 1rem; }
.vebd-navbtn:active { transform: scale(0.92); }
.vebd-navbtn.vebd-navbtn-active, .vebd-navbtn:active { color: var(--vebd-primary); }
.vebd-navbtn-promo { color: var(--vebd-primary); }
@media (min-width: 769px) { .vebd-bottomnav { display: none; } }

/* Back to top */
.vebd-totop {
  position: fixed; right: 1rem; bottom: 7rem; width: 3.6rem; height: 3.6rem;
  border-radius: 50%; background: var(--vebd-primary); color: var(--vebd-bg);
  border: none; font-size: 1.6rem; cursor: pointer; z-index: 999;
  display: none; box-shadow: 0 0.2rem 0.6rem rgba(0,0,0,0.4);
}

/* Reveal animation */
.vebd-reveal { opacity: 0; transform: translateY(1rem); transition: opacity 0.4s, transform 0.4s; }
.vebd-revealed { opacity: 1; transform: none; }
