/**
 * bdg33 - Main Stylesheet
 * CSS class prefix: vc89-
 * Color palette: #262626 | #FA8072 | #3CB371 | #20B2AA
 * Mobile-first responsive design
 */

:root {
  --vc89-primary: #FA8072;
  --vc89-secondary: #3CB371;
  --vc89-accent: #20B2AA;
  --vc89-bg-dark: #262626;
  --vc89-bg-card: #1e1e1e;
  --vc89-bg-section: #2a2a2a;
  --vc89-text-light: #f5f5f5;
  --vc89-text-muted: #b0b0b0;
  --vc89-border: #3a3a3a;
  --vc89-gold: #FFD700;
  --vc89-gradient-warm: linear-gradient(135deg, #FA8072, #e0675f);
  --vc89-gradient-cool: linear-gradient(135deg, #20B2AA, #3CB371);
}

/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--vc89-bg-dark);
  color: var(--vc89-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}
a { color: var(--vc89-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--vc89-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Header */
.vc89-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(38, 38, 38, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vc89-border);
  padding: 0 1rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vc89-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.vc89-header-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.4rem; }
.vc89-header-logo span { font-size: 1.6rem; font-weight: 700; color: var(--vc89-primary); }
.vc89-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.vc89-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 3.4rem;
  min-width: 4.4rem;
}
.vc89-btn-register {
  background: var(--vc89-gradient-warm);
  color: #fff;
}
.vc89-btn-register:hover { transform: scale(1.05); box-shadow: 0 0 12px rgba(250,128,114,0.4); }
.vc89-btn-login {
  background: transparent;
  color: var(--vc89-primary);
  border: 1px solid var(--vc89-primary);
}
.vc89-btn-login:hover { background: var(--vc89-primary); color: #fff; }
.vc89-menu-toggle {
  background: none;
  border: none;
  color: var(--vc89-text-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* Mobile Menu */
.vc89-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.vc89-mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 75%;
  max-width: 300px;
  background: var(--vc89-bg-dark);
  z-index: 9999;
  transform: translateX(-100%);
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.vc89-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vc89-border);
}
.vc89-mobile-menu-header span { font-size: 1.8rem; font-weight: 700; color: var(--vc89-primary); }
.vc89-menu-close {
  background: none;
  border: none;
  color: var(--vc89-text-light);
  font-size: 2rem;
  cursor: pointer;
}
.vc89-menu-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--vc89-text-light);
  border-bottom: 1px solid var(--vc89-border);
  transition: color 0.2s;
}
.vc89-menu-link:hover { color: var(--vc89-primary); }

/* Main content area */
main {
  padding-top: 5.5rem;
  min-height: 100vh;
}
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}

/* Carousel */
.vc89-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 1rem 1rem;
}
.vc89-slide {
  display: none;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.vc89-slide img { width: 100%; height: auto; min-height: 16rem; object-fit: cover; }
.vc89-carousel-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.vc89-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.vc89-dot-active { background: var(--vc89-primary); }
.vc89-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 0.6rem;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 5;
  border-radius: 50%;
}
.vc89-carousel-arrow:hover { background: rgba(0,0,0,0.7); }
.vc89-arrow-prev { left: 0.5rem; }
.vc89-arrow-next { right: 0.5rem; }

/* Section containers */
.vc89-section {
  padding: 1.5rem 1rem;
}
.vc89-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--vc89-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vc89-section-title i { color: var(--vc89-primary); }

/* Game grid */
.vc89-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.vc89-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--vc89-bg-card);
  border-radius: 0.8rem;
  padding: 0.6rem 0.3rem;
}
.vc89-game-card:hover { transform: translateY(-2px); }
.vc89-game-card img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.6rem;
  object-fit: cover;
  margin-bottom: 0.3rem;
}
.vc89-game-card span {
  font-size: 1rem;
  color: var(--vc89-text-muted);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Category title */
.vc89-cat-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--vc89-primary);
  color: var(--vc89-primary);
}

/* Info cards */
.vc89-info-card {
  background: var(--vc89-bg-card);
  border-radius: 1rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--vc89-border);
}
.vc89-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--vc89-primary);
}
.vc89-info-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--vc89-text-muted);
}

/* Promo button */
.vc89-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vc89-gradient-warm);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
  justify-content: center;
  margin: 0.5rem 0;
}
.vc89-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(250,128,114,0.4); }
.vc89-promo-text {
  color: var(--vc89-primary);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.vc89-promo-text:hover { color: var(--vc89-accent); text-decoration: underline; }

/* Winner showcase */
.vc89-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--vc89-border);
  font-size: 1.1rem;
}
.vc89-winner-name { color: var(--vc89-accent); font-weight: 600; }
.vc89-winner-amount { color: var(--vc89-gold); font-weight: 700; }

/* Testimonials */
.vc89-testimonial {
  background: var(--vc89-bg-section);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--vc89-secondary);
}
.vc89-testimonial p { font-size: 1.2rem; color: var(--vc89-text-muted); line-height: 1.5; }
.vc89-testimonial-author { font-size: 1rem; color: var(--vc89-accent); margin-top: 0.4rem; }

/* Payment methods */
.vc89-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.vc89-payment-item {
  background: var(--vc89-bg-card);
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  font-size: 1.1rem;
  color: var(--vc89-text-muted);
  border: 1px solid var(--vc89-border);
}

/* Footer */
.vc89-footer {
  background: var(--vc89-bg-card);
  padding: 2rem 1rem 1rem;
  border-top: 1px solid var(--vc89-border);
  margin-top: 2rem;
}
.vc89-footer-brand {
  font-size: 1.2rem;
  color: var(--vc89-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.vc89-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.vc89-footer-links a {
  background: var(--vc89-bg-section);
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1rem;
  color: var(--vc89-text-muted);
  border: 1px solid var(--vc89-border);
}
.vc89-footer-links a:hover { color: var(--vc89-primary); border-color: var(--vc89-primary); }
.vc89-footer-copy {
  text-align: center;
  font-size: 1rem;
  color: #666;
  padding-top: 1rem;
  border-top: 1px solid var(--vc89-border);
}

/* Bottom navigation */
.vc89-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--vc89-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 6rem;
  padding: 0 0.3rem;
}
.vc89-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 5rem;
  background: none;
  border: none;
  color: var(--vc89-text-muted);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 0.8rem;
  padding: 0.3rem;
}
.vc89-bottom-nav-btn:hover { color: var(--vc89-primary); background: rgba(250,128,114,0.1); }
.vc89-bottom-nav-btn i, .vc89-bottom-nav-btn .material-icons {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}
.vc89-bottom-nav-btn span {
  font-size: 1rem;
  line-height: 1.2;
}
.vc89-bottom-active {
  color: var(--vc89-primary) !important;
}
.vc89-bottom-active i { color: var(--vc89-primary) !important; }

/* Back to top */
.vc89-back-top {
  position: fixed;
  bottom: 7rem;
  right: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--vc89-primary);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(250,128,114,0.3);
  transition: transform 0.2s;
}
.vc89-back-top:hover { transform: scale(1.1); }

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .vc89-bottom-nav { display: none; }
  body { max-width: 430px; }
}

/* Feature grid */
.vc89-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.vc89-feature-item {
  background: var(--vc89-bg-card);
  padding: 1rem;
  border-radius: 0.8rem;
  text-align: center;
  border: 1px solid var(--vc89-border);
}
.vc89-feature-item i { font-size: 2rem; color: var(--vc89-primary); margin-bottom: 0.4rem; display: block; }
.vc89-feature-item h4 { font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--vc89-text-light); }
.vc89-feature-item p { font-size: 1rem; color: var(--vc89-text-muted); line-height: 1.3; }

/* RTP table */
.vc89-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}
.vc89-rtp-table th {
  background: var(--vc89-bg-section);
  padding: 0.6rem;
  text-align: left;
  color: var(--vc89-primary);
  font-weight: 600;
}
.vc89-rtp-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--vc89-border);
  color: var(--vc89-text-muted);
}

/* App download CTA */
.vc89-app-cta {
  background: var(--vc89-gradient-cool);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  margin: 1rem 0;
}
.vc89-app-cta h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.vc89-app-cta p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }

/* Help page styles */
.vc89-help-section {
  background: var(--vc89-bg-card);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--vc89-border);
}
.vc89-help-section h3 {
  font-size: 1.4rem;
  color: var(--vc89-primary);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--vc89-border);
}
.vc89-help-section p, .vc89-help-section li {
  font-size: 1.2rem;
  color: var(--vc89-text-muted);
  line-height: 1.7;
}
.vc89-help-section ol {
  padding-left: 1.5rem;
  list-style: decimal;
}
.vc89-help-section li { margin-bottom: 0.4rem; }

/* FAQ accordion */
.vc89-faq-item {
  background: var(--vc89-bg-card);
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  border: 1px solid var(--vc89-border);
  overflow: hidden;
}
.vc89-faq-q {
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--vc89-text-light);
  cursor: default;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.vc89-faq-q i { color: var(--vc89-primary); flex-shrink: 0; margin-top: 0.2rem; }
.vc89-faq-a {
  padding: 0 1rem 1rem;
  font-size: 1.2rem;
  color: var(--vc89-text-muted);
  line-height: 1.6;
}

/* Achievements */
.vc89-achievement {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--vc89-bg-section);
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
}
.vc89-achievement-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.vc89-achievement-text h4 { font-size: 1.2rem; color: var(--vc89-text-light); }
.vc89-achievement-text p { font-size: 1rem; color: var(--vc89-text-muted); }

/* Security badges */
.vc89-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  text-align: center;
}
.vc89-security-item {
  background: var(--vc89-bg-card);
  padding: 0.8rem 0.4rem;
  border-radius: 0.6rem;
  border: 1px solid var(--vc89-border);
}
.vc89-security-item i { font-size: 1.8rem; color: var(--vc89-secondary); display: block; margin-bottom: 0.3rem; }
.vc89-security-item span { font-size: 1rem; color: var(--vc89-text-muted); }
