/**
 * jiliboss.cfd - Main Stylesheet
 * Prefix: vc09c-
 * Color palette: #2E4057 (dark navy bg), #D2B48C (tan accent), #48D1CC (teal accent)
 * Mobile-first: max-width 430px
 */

/* CSS Custom Properties */
:root {
  --vc09c-primary: #D2B48C;
  --vc09c-secondary: #48D1CC;
  --vc09c-bg: #2E4057;
  --vc09c-bg-dark: #1a2a3e;
  --vc09c-bg-card: #344b66;
  --vc09c-bg-light: #3d5a80;
  --vc09c-text: #f0f0f0;
  --vc09c-text-muted: #a8b8cc;
  --vc09c-text-dark: #1a1a2e;
  --vc09c-border: #4a6a8a;
  --vc09c-success: #4ade80;
  --vc09c-warning: #fbbf24;
  --vc09c-danger: #f87171;
  --vc09c-radius: 8px;
  --vc09c-radius-lg: 12px;
  --vc09c-shadow: 0 2px 8px rgba(0,0,0,0.3);
  --vc09c-shadow-lg: 0 4px 16px rgba(0,0,0,0.4);
  --vc09c-transition: all 0.3s ease;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--vc09c-bg);
  color: var(--vc09c-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(--vc09c-secondary); text-decoration: none; transition: var(--vc09c-transition); }
a:hover { color: var(--vc09c-primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.vc09c-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* =================== HEADER =================== */
.vc09c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--vc09c-bg-dark), var(--vc09c-bg));
  border-bottom: 1px solid var(--vc09c-border);
  max-width: 430px;
  margin: 0 auto;
}
.vc09c-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  min-height: 5.2rem;
}
.vc09c-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vc09c-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.vc09c-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--vc09c-primary);
  letter-spacing: 0.5px;
}
.vc09c-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vc09c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--vc09c-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--vc09c-transition);
  min-height: 3.6rem;
  min-width: 4.4rem;
  text-align: center;
}
.vc09c-btn-register {
  background: linear-gradient(135deg, var(--vc09c-primary), #c4a070);
  color: var(--vc09c-text-dark);
}
.vc09c-btn-register:hover {
  background: linear-gradient(135deg, #c4a070, var(--vc09c-primary));
  transform: scale(1.05);
}
.vc09c-btn-login {
  background: transparent;
  color: var(--vc09c-secondary);
  border: 1.5px solid var(--vc09c-secondary);
}
.vc09c-btn-login:hover {
  background: var(--vc09c-secondary);
  color: var(--vc09c-text-dark);
}
.vc09c-btn-promo {
  background: linear-gradient(135deg, var(--vc09c-secondary), #3bb8b3);
  color: var(--vc09c-text-dark);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: var(--vc09c-radius-lg);
  box-shadow: var(--vc09c-shadow);
}
.vc09c-btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: var(--vc09c-shadow-lg);
}
.vc09c-menu-toggle {
  background: none;
  border: none;
  color: var(--vc09c-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================== MOBILE MENU =================== */
.vc09c-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--vc09c-transition);
}
.vc09c-overlay-active { opacity: 1; visibility: visible; }
.vc09c-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 260px;
  height: 100%;
  background: var(--vc09c-bg-dark);
  z-index: 9999;
  transition: right 0.35s ease;
  padding: 2rem 0;
  overflow-y: auto;
  border-left: 1px solid var(--vc09c-border);
}
.vc09c-menu-active { right: 0; }
.vc09c-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--vc09c-border);
}
.vc09c-menu-close {
  background: none;
  border: none;
  color: var(--vc09c-text);
  font-size: 2rem;
  cursor: pointer;
}
.vc09c-menu-links {
  padding: 1rem 0;
}
.vc09c-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--vc09c-text);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(74,106,138,0.3);
  transition: var(--vc09c-transition);
}
.vc09c-menu-link:hover {
  background: rgba(210,180,140,0.1);
  color: var(--vc09c-primary);
  padding-left: 2rem;
}

/* =================== MAIN CONTENT =================== */
.vc09c-main {
  padding-top: 5.2rem;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .vc09c-main { padding-bottom: 80px; }
}

/* =================== CAROUSEL =================== */
.vc09c-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--vc09c-radius-lg) var(--vc09c-radius-lg);
}
.vc09c-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.vc09c-slide-active { display: block; }
.vc09c-carousel-slide img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
}
.vc09c-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.vc09c-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--vc09c-transition);
  border: none;
}
.vc09c-dot-active {
  background: var(--vc09c-primary);
  width: 20px;
  border-radius: 4px;
}

/* =================== SECTION HEADINGS =================== */
.vc09c-section {
  padding: 2rem 1.2rem;
}
.vc09c-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vc09c-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--vc09c-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vc09c-section-title i,
.vc09c-section-title span.material-symbols-outlined {
  font-size: 2rem;
  color: var(--vc09c-secondary);
}

/* =================== GAME GRID =================== */
.vc09c-game-category {
  margin-bottom: 2rem;
}
.vc09c-category-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vc09c-secondary);
  margin-bottom: 0.8rem;
  padding-left: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vc09c-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.vc09c-game-card {
  background: var(--vc09c-bg-card);
  border-radius: var(--vc09c-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--vc09c-transition);
  border: 1px solid transparent;
}
.vc09c-game-card:hover {
  border-color: var(--vc09c-primary);
  transform: translateY(-2px);
  box-shadow: var(--vc09c-shadow);
}
.vc09c-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.vc09c-game-name {
  font-size: 1rem;
  color: var(--vc09c-text-muted);
  text-align: center;
  padding: 0.3rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

/* =================== INFO CARDS =================== */
.vc09c-card {
  background: var(--vc09c-bg-card);
  border-radius: var(--vc09c-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--vc09c-border);
}
.vc09c-card h2 {
  font-size: 1.6rem;
  color: var(--vc09c-primary);
  margin-bottom: 0.8rem;
}
.vc09c-card h3 {
  font-size: 1.4rem;
  color: var(--vc09c-secondary);
  margin-bottom: 0.6rem;
}
.vc09c-card p {
  color: var(--vc09c-text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* =================== TESTIMONIALS =================== */
.vc09c-testimonial {
  background: var(--vc09c-bg-card);
  border-radius: var(--vc09c-radius-lg);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--vc09c-primary);
}
.vc09c-testimonial-text {
  color: var(--vc09c-text-muted);
  font-style: italic;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.vc09c-testimonial-author {
  color: var(--vc09c-secondary);
  font-weight: 600;
  font-size: 1.2rem;
}

/* =================== FAQ =================== */
.vc09c-faq-item {
  background: var(--vc09c-bg-card);
  border-radius: var(--vc09c-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--vc09c-border);
}
.vc09c-faq-question {
  font-weight: 600;
  color: var(--vc09c-primary);
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}
.vc09c-faq-answer {
  color: var(--vc09c-text-muted);
  line-height: 1.5;
  font-size: 1.2rem;
}

/* =================== WINNERS =================== */
.vc09c-winner-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(74,106,138,0.3);
}
.vc09c-winner-name {
  color: var(--vc09c-primary);
  font-weight: 600;
  min-width: 80px;
}
.vc09c-winner-game {
  color: var(--vc09c-text-muted);
  flex: 1;
  font-size: 1.2rem;
}
.vc09c-winner-amount {
  color: var(--vc09c-success);
  font-weight: 700;
  font-size: 1.3rem;
}

/* =================== RTP TABLE =================== */
.vc09c-rtp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(74,106,138,0.3);
}
.vc09c-rtp-game {
  color: var(--vc09c-text);
  font-size: 1.2rem;
  flex: 1;
}
.vc09c-rtp-bar {
  flex: 2;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 0.8rem;
  overflow: hidden;
}
.vc09c-rtp-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--vc09c-secondary), var(--vc09c-primary));
}
.vc09c-rtp-value {
  color: var(--vc09c-primary);
  font-weight: 600;
  font-size: 1.2rem;
  min-width: 40px;
  text-align: right;
}

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

/* =================== CTA SECTION =================== */
.vc09c-cta {
  text-align: center;
  padding: 2rem 1.2rem;
  background: linear-gradient(135deg, var(--vc09c-bg-dark), var(--vc09c-bg-card));
  border-radius: var(--vc09c-radius-lg);
  margin: 1.5rem 1.2rem;
}
.vc09c-cta h2 {
  color: var(--vc09c-primary);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.vc09c-cta p {
  color: var(--vc09c-text-muted);
  margin-bottom: 1.2rem;
}

/* =================== FEATURES LIST =================== */
.vc09c-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
}
.vc09c-feature-icon {
  font-size: 2rem;
  color: var(--vc09c-secondary);
  min-width: 28px;
  text-align: center;
}
.vc09c-feature-text h3 {
  color: var(--vc09c-primary);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.vc09c-feature-text p {
  color: var(--vc09c-text-muted);
  font-size: 1.2rem;
  margin: 0;
}

/* =================== FOOTER =================== */
.vc09c-footer {
  background: var(--vc09c-bg-dark);
  padding: 2rem 1.2rem;
  border-top: 1px solid var(--vc09c-border);
}
.vc09c-footer-brand {
  margin-bottom: 1.2rem;
}
.vc09c-footer-brand p {
  color: var(--vc09c-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
}
.vc09c-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.vc09c-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.2rem;
}
.vc09c-footer-link {
  color: var(--vc09c-text-muted);
  font-size: 1.2rem;
  transition: var(--vc09c-transition);
}
.vc09c-footer-link:hover { color: var(--vc09c-primary); }
.vc09c-copyright {
  color: rgba(168,184,204,0.5);
  font-size: 1.1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(74,106,138,0.3);
}

/* =================== BOTTOM NAV =================== */
.vc09c-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--vc09c-bg-dark), #0f1a28);
  border-top: 1px solid var(--vc09c-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}
.vc09c-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--vc09c-text-muted);
  cursor: pointer;
  transition: var(--vc09c-transition);
  padding: 0.3rem;
  border-radius: var(--vc09c-radius);
}
.vc09c-bottom-nav-btn i,
.vc09c-bottom-nav-btn .material-symbols-outlined,
.vc09c-bottom-nav-btn ion-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.vc09c-bottom-nav-btn span {
  font-size: 10px;
  white-space: nowrap;
}
.vc09c-bottom-nav-btn:hover,
.vc09c-nav-current {
  color: var(--vc09c-primary);
  transform: scale(1.08);
}
.vc09c-nav-current {
  background: rgba(210,180,140,0.1);
  border-radius: var(--vc09c-radius);
}

/* =================== PARTNER LOGOS =================== */
.vc09c-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 1rem 0;
}
.vc09c-partner-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--vc09c-radius);
  opacity: 0.7;
  transition: var(--vc09c-transition);
}
.vc09c-partner-logo:hover { opacity: 1; }

/* =================== INTERNAL LINKS =================== */
.vc09c-internal-link {
  color: var(--vc09c-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(72,209,204,0.3);
  text-underline-offset: 2px;
}
.vc09c-internal-link:hover {
  color: var(--vc09c-primary);
  text-decoration-color: var(--vc09c-primary);
}

/* =================== H1 =================== */
.vc09c-h1 {
  font-size: 2rem;
  color: var(--vc09c-primary);
  text-align: center;
  padding: 1.5rem 1rem;
  line-height: 1.3;
}

/* =================== UTILITIES =================== */
.vc09c-text-center { text-align: center; }
.vc09c-mt-1 { margin-top: 0.8rem; }
.vc09c-mt-2 { margin-top: 1.6rem; }
.vc09c-mb-1 { margin-bottom: 0.8rem; }
.vc09c-mb-2 { margin-bottom: 1.6rem; }
.vc09c-highlight {
  color: var(--vc09c-primary);
  font-weight: 600;
}
.vc09c-promo-text {
  color: var(--vc09c-secondary);
  font-weight: 600;
}

/* =================== RESPONSIVE =================== */
@media (min-width: 769px) {
  .vc09c-bottom-nav { display: none; }
  body { max-width: 430px; }
}
@media (max-width: 320px) {
  .vc09c-game-grid { grid-template-columns: repeat(3, 1fr); }
  .vc09c-h1 { font-size: 1.7rem; }
}
