/* betso88 site styles - vb09- prefix for namespace isolation */
/* Color palette: #3C3C3C | #FF9800 | #1A1A2E | #FF8000 | #FFB74D */

:root {
  --vb09-bg: #1A1A2E;
  --vb09-bg-alt: #3C3C3C;
  --vb09-primary: #FF9800;
  --vb09-accent: #FF8000;
  --vb09-light: #FFB74D;
  --vb09-text: #FFFFFF;
  --vb09-text-muted: #C7C7D1;
  --vb09-card: #26263F;
  --vb09-border: #3A3A5A;
  --vb09-radius: 1.2rem;
  --vb09-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.35);
}

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

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

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

img { max-width: 100%; display: block; }

a { color: var(--vb09-light); text-decoration: none; }

/* ============ Header ============ */
.vb09-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1A1A2E 0%, #26263F 100%);
  border-bottom: 0.2rem solid var(--vb09-primary);
  max-width: 430px;
  margin: 0 auto;
}
.vb09-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  gap: 0.8rem;
}
.vb09-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}
.vb09-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.vb09-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vb09-primary);
  letter-spacing: 0.05rem;
  white-space: nowrap;
}
.vb09-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vb09-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.4rem;
  padding: 0 1.2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #1A1A2E;
}
.vb09-btn:active { transform: scale(0.96); }
.vb09-btn-register {
  background: linear-gradient(90deg, var(--vb09-accent), var(--vb09-primary));
  box-shadow: 0 0.3rem 0.8rem rgba(255,128,0,0.4);
}
.vb09-btn-login {
  background: linear-gradient(90deg, var(--vb09-light), #FFD18A);
}
.vb09-menu-btn {
  background: transparent;
  color: var(--vb09-primary);
  font-size: 2rem;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 0.6rem;
  border: 0.1rem solid var(--vb09-border);
  cursor: pointer;
}

/* ============ Mobile Menu ============ */
.vb09-mobile-menu {
  position: fixed;
  top: 0; right: -80%;
  width: 80%;
  max-width: 32rem;
  height: 100%;
  background: #26263F;
  z-index: 9999;
  padding: 2rem 1.5rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.vb09-mobile-menu.vb09-menu-open { right: 0; }
.vb09-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vb09-menu-overlay.vb09-overlay-show { opacity: 1; pointer-events: auto; }
.vb09-menu-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vb09-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid var(--vb09-border);
}
.vb09-menu-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1rem;
  color: var(--vb09-text);
  font-size: 1.4rem;
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  background: var(--vb09-card);
  border-left: 0.3rem solid var(--vb09-primary);
}
.vb09-menu-link:active { background: var(--vb09-bg-alt); }
.vb09-menu-link i { color: var(--vb09-light); font-size: 1.6rem; }

/* ============ Main Content ============ */
.vb09-main {
  padding-top: 6rem;
  padding-bottom: 1rem;
}
.vb09-container {
  width: 100%;
  padding: 0 1.2rem;
}
.vb09-section {
  padding: 2rem 1.2rem;
}
.vb09-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vb09-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vb09-section-title::before {
  content: '';
  display: inline-block;
  width: 0.4rem;
  height: 1.8rem;
  background: var(--vb09-accent);
  border-radius: 0.2rem;
}

/* ============ Carousel ============ */
.vb09-carousel {
  position: relative;
  width: 100%;
  height: 18rem;
  border-radius: var(--vb09-radius);
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: var(--vb09-shadow);
}
.vb09-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.vb09-slide.vb09-slide-active { opacity: 1; }
.vb09-slide img { width: 100%; height: 100%; object-fit: cover; }
.vb09-slide-caption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(26,26,46,0.7);
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.vb09-dots {
  position: absolute;
  bottom: 0.8rem; right: 1rem;
  display: flex;
  gap: 0.5rem;
}
.vb09-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
}
.vb09-dot.vb09-dot-active { background: var(--vb09-primary); }

/* ============ Hero ============ */
.vb09-hero {
  text-align: center;
  padding: 1.5rem 1.2rem;
}
.vb09-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--vb09-text);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.vb09-hero h1 span { color: var(--vb09-primary); }
.vb09-hero p {
  font-size: 1.3rem;
  color: var(--vb09-text-muted);
  margin-bottom: 1.2rem;
}
.vb09-cta-row {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vb09-cta-primary {
  background: linear-gradient(90deg, var(--vb09-accent), var(--vb09-primary));
  color: #1A1A2E;
  padding: 1.2rem 2.4rem;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 2.4rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.4rem 1rem rgba(255,128,0,0.5);
}
.vb09-cta-secondary {
  background: transparent;
  color: var(--vb09-light);
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 2.4rem;
  border: 0.2rem solid var(--vb09-light);
  cursor: pointer;
}

/* ============ Game Grid ============ */
.vb09-game-block { margin-bottom: 2rem; }
.vb09-game-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.vb09-game-cat-label {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vb09-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vb09-game-cat-count {
  font-size: 1.1rem;
  color: var(--vb09-text-muted);
  background: var(--vb09-bg-alt);
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
}
.vb09-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.vb09-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.vb09-game-item:active { transform: scale(0.94); }
.vb09-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 0.15rem solid var(--vb09-border);
}
.vb09-game-item span {
  display: block;
  font-size: 1rem;
  color: var(--vb09-text-muted);
  margin-top: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============ Cards ============ */
.vb09-card {
  background: var(--vb09-card);
  border-radius: var(--vb09-radius);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--vb09-shadow);
  border: 0.1rem solid var(--vb09-border);
}
.vb09-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--vb09-primary);
  margin-bottom: 0.8rem;
}
.vb09-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vb09-light);
  margin: 1rem 0 0.5rem;
}
.vb09-card p {
  font-size: 1.3rem;
  color: var(--vb09-text-muted);
  margin-bottom: 0.8rem;
}
.vb09-card ul { list-style: none; padding-left: 0; }
.vb09-card ul li {
  font-size: 1.3rem;
  color: var(--vb09-text-muted);
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
}
.vb09-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--vb09-primary);
  font-size: 1rem;
}
.vb09-promo-text {
  color: var(--vb09-primary);
  font-weight: 700;
  cursor: pointer;
}

/* ============ Features Grid ============ */
.vb09-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.vb09-feature-item {
  background: var(--vb09-card);
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
  border: 0.1rem solid var(--vb09-border);
}
.vb09-feature-item i {
  font-size: 2.2rem;
  color: var(--vb09-primary);
  margin-bottom: 0.6rem;
}
.vb09-feature-item h3 {
  font-size: 1.3rem;
  color: var(--vb09-text);
  margin-bottom: 0.3rem;
}
.vb09-feature-item p {
  font-size: 1.1rem;
  color: var(--vb09-text-muted);
}

/* ============ RTP Table ============ */
.vb09-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
}
.vb09-rtp-table th, .vb09-rtp-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 0.1rem solid var(--vb09-border);
}
.vb09-rtp-table th { color: var(--vb09-primary); font-weight: 700; }
.vb09-rtp-table td { color: var(--vb09-text-muted); }
.vb09-rtp-table td.vb09-rtp-value { color: var(--vb09-light); font-weight: 700; }

/* ============ Winners ============ */
.vb09-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  background: var(--vb09-bg-alt);
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
}
.vb09-winner-name { font-size: 1.2rem; color: var(--vb09-text); font-weight: 600; }
.vb09-winner-game { font-size: 1.1rem; color: var(--vb09-text-muted); }
.vb09-winner-amount { font-size: 1.3rem; color: var(--vb09-primary); font-weight: 800; }

/* ============ Testimonials ============ */
.vb09-testimonial {
  background: var(--vb09-card);
  border-radius: 1rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 0.3rem solid var(--vb09-primary);
}
.vb09-testimonial p { font-size: 1.2rem; color: var(--vb09-text-muted); font-style: italic; }
.vb09-testimonial-author {
  font-size: 1.1rem;
  color: var(--vb09-light);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ============ Payment ============ */
.vb09-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.vb09-payment-chip {
  background: var(--vb09-card);
  border: 0.1rem solid var(--vb09-border);
  border-radius: 0.8rem;
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  color: var(--vb09-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vb09-payment-chip i { color: var(--vb09-primary); }

/* ============ Footer ============ */
.vb09-footer {
  background: #14142B;
  padding: 2rem 1.2rem 1.5rem;
  border-top: 0.2rem solid var(--vb09-primary);
}
.vb09-footer-brand {
  font-size: 1.3rem;
  color: var(--vb09-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.vb09-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.vb09-footer-link {
  font-size: 1.1rem;
  color: var(--vb09-light);
  background: var(--vb09-card);
  padding: 0.4rem 0.8rem;
  border-radius: 0.6rem;
}
.vb09-footer-promo-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}
.vb09-footer-promo-btn {
  flex: 1;
  min-width: 8rem;
  background: linear-gradient(90deg, var(--vb09-accent), var(--vb09-primary));
  color: #1A1A2E;
  padding: 0.8rem;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
}
.vb09-copyright {
  font-size: 1.1rem;
  color: var(--vb09-text-muted);
  text-align: center;
  padding-top: 1rem;
  border-top: 0.1rem solid var(--vb09-border);
}

/* ============ Bottom Navigation ============ */
.vb09-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 6rem;
  background: linear-gradient(180deg, #26263F 0%, #1A1A2E 100%);
  border-top: 0.2rem solid var(--vb09-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}
.vb09-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 6rem;
  min-height: 6rem;
  background: transparent;
  border: none;
  color: var(--vb09-text-muted);
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  position: relative;
}
.vb09-bottom-nav-btn:active { transform: scale(0.9); }
.vb09-bottom-nav-btn .material-icons,
.vb09-bottom-nav-btn ion-icon,
.vb09-bottom-nav-btn i { font-size: 2.4rem; }
.vb09-bottom-nav-btn span { font-size: 1rem; }
.vb09-bottom-nav-btn.vb09-nav-active { color: var(--vb09-primary); }
.vb09-bottom-nav-btn.vb09-nav-active::after {
  content: '';
  position: absolute;
  top: 0;
  width: 2.4rem;
  height: 0.3rem;
  background: var(--vb09-primary);
  border-radius: 0 0 0.3rem 0.3rem;
}
.vb09-nav-badge {
  position: absolute;
  top: 0.4rem; right: 1.4rem;
  background: var(--vb09-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
}

/* ============ Desktop ============ */
@media (min-width: 769px) {
  .vb09-bottom-nav { display: none; }
}
@media (max-width: 768px) {
  .vb09-main { padding-bottom: 8rem; }
}

/* ============ Utility ============ */
.vb09-text-link { color: var(--vb09-primary); font-weight: 700; cursor: pointer; }
.vb09-divider { height: 0.1rem; background: var(--vb09-border); margin: 1rem 0; }
