/* AF88OK theme - all classes prefixed with vc8c- */
:root {
  --vc8c-bg: #2D2D2D;
  --vc8c-bg-2: #4A4A4A;
  --vc8c-primary: #FF9800;
  --vc8c-primary-2: #FFB74D;
  --vc8c-soft: #FFCCCB;
  --vc8c-text: #FFFFFF;
  --vc8c-text-dim: #E8E8E8;
  --vc8c-card: #3A3A3A;
  --vc8c-border: rgba(255, 152, 0, 0.35);
  --vc8c-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.45);
  --vc8c-radius: 1rem;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { font-size: 62.5%; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--vc8c-bg);
  color: var(--vc8c-text);
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vc8c-primary-2); text-decoration: none; }
a:hover { color: var(--vc8c-primary); }

.vc8c-wrapper { width: 100%; max-width: 430px; margin: 0 auto; position: relative; }
.vc8c-container { width: 100%; padding: 0 1.2rem; }

/* Header */
.vc8c-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #2A2A2A 0%, #333333 100%);
  border-bottom: 2px solid var(--vc8c-primary);
  transition: box-shadow .25s ease;
}
.vc8c-header-scrolled { box-shadow: 0 .3rem 1rem rgba(0,0,0,.5); }
.vc8c-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1rem; gap: .6rem;
}
.vc8c-logo { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.vc8c-logo img { width: 2.8rem; height: 2.8rem; border-radius: .5rem; }
.vc8c-logo-text { font-weight: 800; font-size: 1.6rem; letter-spacing: .3px; color: var(--vc8c-primary); white-space: nowrap; }
.vc8c-logo-text span { color: var(--vc8c-text); }
.vc8c-header-actions { display: flex; align-items: center; gap: .5rem; }

.vc8c-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  border: none; border-radius: 2rem; cursor: pointer;
  font-weight: 700; font-size: 1.25rem; padding: .65rem 1.1rem;
  transition: transform .15s ease, filter .2s ease; min-height: 3.2rem;
  font-family: inherit;
}
.vc8c-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.vc8c-btn-primary { background: linear-gradient(135deg, var(--vc8c-primary) 0%, var(--vc8c-primary-2) 100%); color: #2D2D2D; }
.vc8c-btn-ghost { background: transparent; color: var(--vc8c-text); border: 1.5px solid var(--vc8c-primary); }
.vc8c-btn-block { display: flex; width: 100%; justify-content: center; padding: .9rem; font-size: 1.35rem; }
.vc8c-btn-soft { background: var(--vc8c-soft); color: #2D2D2D; }

.vc8c-icon-btn {
  background: transparent; border: none; color: var(--vc8c-text);
  font-size: 1.6rem; cursor: pointer; padding: .4rem; border-radius: .4rem;
  min-width: 4.4rem; min-height: 4.4rem; display: inline-flex; align-items: center; justify-content: center;
}

/* Mobile expandable menu */
.vc8c-mobile-menu {
  position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
  background: #262626; z-index: 9999; transform: translateX(110%); transition: transform .3s ease;
  padding: 6rem 1.2rem 2rem; overflow-y: auto; box-shadow: -8px 0 30px rgba(0,0,0,.6);
}
.vc8c-mobile-menu.vc8c-menu-open { transform: translateX(0); }
.vc8c-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.vc8c-menu-overlay.vc8c-menu-open { opacity: 1; pointer-events: auto; }
.vc8c-menu-title { color: var(--vc8c-primary); font-size: 1.35rem; font-weight: 800; margin: 1.2rem 0 .6rem; }
.vc8c-menu-link {
  display: block; padding: .85rem .6rem; border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--vc8c-text); font-size: 1.3rem; font-weight: 600;
}
.vc8c-menu-link:hover { color: var(--vc8c-primary); background: rgba(255,152,0,.08); }

/* Hero carousel */
.vc8c-hero { margin-top: 6.2rem; padding: 1rem 0 .4rem; }
.vc8c-carousel { position: relative; border-radius: var(--vc8c-radius); overflow: hidden; box-shadow: var(--vc8c-shadow); }
.vc8c-carousel-track { position: relative; aspect-ratio: 16/7; }
.vc8c-carousel-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
}
.vc8c-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.vc8c-carousel-slide.vc8c-slide-active { opacity: 1; }
.vc8c-carousel-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,0));
  padding: 1.4rem 1rem .9rem;
}
.vc8c-carousel-title { font-size: 1.5rem; font-weight: 800; color: var(--vc8c-primary-2); margin: 0 0 .2rem; }
.vc8c-carousel-sub { font-size: 1.15rem; color: var(--vc8c-text-dim); margin: 0 0 .6rem; }
.vc8c-carousel-dots {
  position: absolute; bottom: .6rem; right: .8rem; display: flex; gap: .4rem; z-index: 2;
}
.vc8c-carousel-dot {
  width: .7rem; height: .7rem; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer;
}
.vc8c-carousel-dot.vc8c-dot-active { background: var(--vc8c-primary); }

/* Sections */
.vc8c-section { padding: 1.6rem 0 .4rem; }
.vc8c-section-title {
  font-size: 1.55rem; font-weight: 800; color: var(--vc8c-text); margin: 0 0 .8rem;
  display: flex; align-items: center; gap: .5rem;
}
.vc8c-section-title::before {
  content: ""; width: .35rem; height: 1.6rem; background: var(--vc8c-primary); border-radius: .3rem;
}
.vc8c-section-sub { color: var(--vc8c-text-dim); font-size: 1.2rem; margin: 0 0 .8rem; }
.vc8c-h1 { font-size: 1.75rem; font-weight: 800; line-height: 1.35; color: var(--vc8c-text); margin: .4rem 0 .4rem; }
.vc8c-h1 b { color: var(--vc8c-primary); }
.vc8c-lead { color: var(--vc8c-text-dim); font-size: 1.22rem; margin: .4rem 0 1rem; }

/* Category chips */
.vc8c-chips { display: flex; gap: .5rem; overflow-x: auto; padding: .2rem 0 .8rem; scrollbar-width: none; }
.vc8c-chips::-webkit-scrollbar { display: none; }
.vc8c-chip {
  flex: 0 0 auto; padding: .5rem 1rem; border-radius: 2rem;
  background: var(--vc8c-card); color: var(--vc8c-text-dim); font-size: 1.1rem; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
}
.vc8c-chip.vc8c-chip-active, .vc8c-chip:hover {
  background: var(--vc8c-primary); color: #2D2D2D; border-color: var(--vc8c-primary-2);
}

/* Game grid */
.vc8c-game-cat { margin-bottom: 1.4rem; }
.vc8c-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: .8rem 0 .7rem;
}
.vc8c-cat-head h2 { font-size: 1.4rem; font-weight: 700; color: var(--vc8c-primary-2); margin: 0; }
.vc8c-cat-head small { color: var(--vc8c-text-dim); font-size: 1.05rem; }
.vc8c-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem;
}
.vc8c-game-card {
  background: var(--vc8c-card); border-radius: .8rem; overflow: hidden;
  cursor: pointer; position: relative; border: 1px solid rgba(255,255,255,.05);
  transition: transform .15s ease, box-shadow .2s ease;
}
.vc8c-game-card:hover { transform: translateY(-2px); box-shadow: 0 .5rem 1.2rem rgba(255,152,0,.25); }
.vc8c-game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #222; }
.vc8c-game-name {
  font-size: 1rem; font-weight: 600; color: var(--vc8c-text);
  padding: .35rem .3rem .45rem; text-align: center; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vc8c-game-hot {
  position: absolute; top: .25rem; left: .25rem;
  background: var(--vc8c-primary); color: #2D2D2D; font-size: .85rem; font-weight: 800;
  padding: .1rem .4rem; border-radius: .4rem;
}

/* Cards / modules */
.vc8c-card {
  background: linear-gradient(160deg, var(--vc8c-card) 0%, #333 100%);
  border-radius: var(--vc8c-radius); padding: 1.1rem; margin-bottom: 1rem;
  border: 1px solid var(--vc8c-border); box-shadow: var(--vc8c-shadow);
}
.vc8c-card h3 { margin: 0 0 .5rem; font-size: 1.3rem; color: var(--vc8c-primary-2); }
.vc8c-card p { margin: 0 0 .6rem; color: var(--vc8c-text-dim); font-size: 1.15rem; }
.vc8c-card ul { margin: .4rem 0; padding-left: 1.4rem; color: var(--vc8c-text-dim); font-size: 1.12rem; }
.vc8c-card li { margin-bottom: .3rem; }
.vc8c-link-text { color: var(--vc8c-primary); font-weight: 700; }
.vc8c-link-text:hover { text-decoration: underline; color: var(--vc8c-primary-2); }
.vc8c-pill {
  display: inline-block; background: rgba(255,152,0,.15); color: var(--vc8c-primary-2);
  padding: .25rem .7rem; border-radius: 2rem; font-size: 1.05rem; font-weight: 700; margin-right: .3rem;
}

/* Steps */
.vc8c-steps { display: grid; gap: .6rem; }
.vc8c-step {
  display: flex; gap: .8rem; align-items: flex-start;
  background: rgba(255,255,255,.04); padding: .7rem .8rem; border-radius: .6rem;
  border-left: 3px solid var(--vc8c-primary);
}
.vc8c-step-num {
  flex: 0 0 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--vc8c-primary); color: #2D2D2D; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.vc8c-step-body strong { color: var(--vc8c-text); font-size: 1.18rem; }
.vc8c-step-body span { color: var(--vc8c-text-dim); font-size: 1.08rem; display: block; }

/* Stat grid */
.vc8c-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.vc8c-stat {
  background: rgba(255,255,255,.04); padding: .8rem; border-radius: .7rem; text-align: center;
}
.vc8c-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--vc8c-primary); }
.vc8c-stat-label { font-size: 1.05rem; color: var(--vc8c-text-dim); }

/* FAQ */
.vc8c-faq-item {
  background: var(--vc8c-card); border-radius: .7rem; margin-bottom: .6rem;
  border: 1px solid rgba(255,255,255,.06); overflow: hidden;
}
.vc8c-faq-q {
  width: 100%; text-align: left; background: transparent; border: none; color: var(--vc8c-text);
  padding: .9rem; font-size: 1.18rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: .6rem;
}
.vc8c-faq-q i { color: var(--vc8c-primary); transition: transform .25s ease; }
.vc8c-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 .9rem; color: var(--vc8c-text-dim); font-size: 1.12rem; }
.vc8c-faq-item.vc8c-faq-open .vc8c-faq-a { max-height: 600px; padding: 0 .9rem .9rem; }
.vc8c-faq-item.vc8c-faq-open .vc8c-faq-q i { transform: rotate(45deg); }

/* Testimonial */
.vc8c-testi { background: rgba(255,255,255,.04); padding: .8rem; border-radius: .7rem; margin-bottom: .55rem; }
.vc8c-testi-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.vc8c-testi-avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--vc8c-primary); color: #2D2D2D; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.vc8c-testi-name { font-weight: 700; color: var(--vc8c-text); font-size: 1.12rem; }
.vc8c-testi-stars { color: var(--vc8c-primary); font-size: 1rem; margin-left: auto; }
.vc8c-testi p { margin: 0; color: var(--vc8c-text-dim); font-size: 1.1rem; }

/* Payment */
.vc8c-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; }
.vc8c-pay { background: rgba(255,255,255,.06); border-radius: .5rem; padding: .55rem .25rem; text-align: center; font-size: .95rem; color: var(--vc8c-text-dim); font-weight: 600; }
.vc8c-pay i { display: block; font-size: 1.5rem; color: var(--vc8c-primary-2); margin-bottom: .2rem; }

/* Footer */
.vc8c-footer {
  background: #232323; border-top: 2px solid var(--vc8c-primary);
  padding: 1.6rem 1.2rem 9rem; margin-top: 1.4rem; color: var(--vc8c-text-dim);
}
.vc8c-footer-brand { font-size: 1.18rem; line-height: 1.5; margin-bottom: 1rem; }
.vc8c-footer-brand b { color: var(--vc8c-primary); }
.vc8c-footer-promos { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.vc8c-footer-promos .vc8c-btn { font-size: 1.1rem; padding: .55rem .85rem; }
.vc8c-footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem .8rem; margin-bottom: 1rem;
}
.vc8c-footer-links a { color: var(--vc8c-text-dim); font-size: 1.1rem; }
.vc8c-footer-links a:hover { color: var(--vc8c-primary); }
.vc8c-footer-copy { font-size: 1rem; color: #999; border-top: 1px solid rgba(255,255,255,.08); padding-top: .8rem; }

/* Bottom nav */
.vc8c-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #2E2E2E 0%, #1F1F1F 100%);
  border-top: 2px solid var(--vc8c-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 6rem; padding: .3rem 0;
}
.vc8c-bottomnav-btn {
  flex: 1; background: transparent; border: none; color: var(--vc8c-text-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem; cursor: pointer; min-width: 6rem; min-height: 5.4rem;
  font-size: 1rem; font-weight: 600; font-family: inherit; transition: color .15s ease, transform .15s ease;
  padding: 0; position: relative;
}
.vc8c-bottomnav-btn i { font-size: 2.2rem; }
.vc8c-bottomnav-btn:hover { color: var(--vc8c-primary-2); transform: translateY(-1px); }
.vc8c-bottomnav-btn.vc8c-bottomnav-current { color: var(--vc8c-primary); }
.vc8c-bottomnav-btn.vc8c-bottomnav-current::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2.6rem; height: .25rem; background: var(--vc8c-primary); border-radius: .2rem;
}
.vc8c-bottomnav-badge {
  position: absolute; top: .4rem; right: 1.3rem; min-width: 1.5rem; height: 1.5rem;
  background: var(--vc8c-soft); color: #2D2D2D; font-size: .9rem; font-weight: 800;
  border-radius: 1rem; padding: 0 .3rem; display: flex; align-items: center; justify-content: center;
}

/* Reveal animation */
.vc8c-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.vc8c-reveal.vc8c-revealed { opacity: 1; transform: translateY(0); }

/* Desktop: hide bottom nav, show horizontal nav */
@media (min-width: 769px) {
  .vc8c-bottomnav { display: none; }
  body { padding-bottom: 0; }
}
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}

/* CTA banner */
.vc8c-cta {
  background: linear-gradient(135deg, var(--vc8c-primary) 0%, var(--vc8c-primary-2) 100%);
  color: #2D2D2D; padding: 1.1rem; border-radius: var(--vc8c-radius); text-align: center; margin: 1rem 0;
}
.vc8c-cta h3 { margin: 0 0 .35rem; font-size: 1.35rem; }
.vc8c-cta p { margin: 0 0 .7rem; font-size: 1.12rem; }
.vc8c-cta .vc8c-btn { background: #2D2D2D; color: var(--vc8c-primary-2); }
