/* ==========================================================
   F168L base stylesheet - prefix vc08-
   Palette: #CCCCCC | #0C0C0C | #FAF0E6 | #DEB887
   Mobile-first, max width 430px
   ========================================================== */

:root {
  --vc08-bg: #0C0C0C;
  --vc08-bg-soft: #161412;
  --vc08-bg-card: #1d1a17;
  --vc08-text: #FAF0E6;
  --vc08-text-dim: #CCCCCC;
  --vc08-accent: #DEB887;
  --vc08-accent-2: #e8c89a;
  --vc08-gold: #d9a441;
  --vc08-red: #c8443a;
  --vc08-green: #4cae50;
  --vc08-border: rgba(222, 184, 135, 0.22);
  --vc08-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --vc08-radius: 14px;
  --vc08-radius-sm: 10px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Be Vietnam Pro", "Segoe UI", "Roboto", system-ui, sans-serif;
  background: var(--vc08-bg);
  color: var(--vc08-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
}
a { color: var(--vc08-accent); text-decoration: none; }
a:hover { color: var(--vc08-accent-2); text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* Container */
.vc08-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}
.vc08-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* Skip link */
.vc08-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--vc08-accent);
  color: #0C0C0C;
  padding: 8px 14px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.vc08-skip:focus { left: 0; }

/* ===== Header ===== */
.vc08-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(12,12,12,0.96), rgba(12,12,12,0.88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vc08-border);
}
.vc08-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  gap: 8px;
}
.vc08-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vc08-text);
  text-decoration: none;
  flex: 0 0 auto;
}
.vc08-brand:hover { text-decoration: none; color: var(--vc08-text); }
.vc08-brand img { width: 28px; height: 28px; border-radius: 6px; }
.vc08-brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #DEB887, #FAF0E6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc08-brand-tag {
  font-size: 1rem;
  color: var(--vc08-accent);
  font-weight: 600;
}

.vc08-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc08-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 36px;
  font-family: inherit;
}
.vc08-btn:active { transform: scale(0.96); }
.vc08-btn-register {
  background: linear-gradient(135deg, #DEB887, #d9a441);
  color: #0C0C0C;
  box-shadow: 0 4px 12px rgba(222,184,135,0.35);
}
.vc08-btn-login {
  background: transparent;
  color: var(--vc08-accent);
  border: 1.5px solid var(--vc08-accent);
}
.vc08-btn-login:hover { background: rgba(222,184,135,0.12); }
.vc08-menu-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250,240,230,0.08);
  color: var(--vc08-text);
  border: 1px solid var(--vc08-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
}

/* Desktop nav */
.vc08-desktop-nav {
  display: none;
}
@media (min-width: 769px) {
  .vc08-header-inner { max-width: 1100px; padding: 10px 24px; }
  .vc08-desktop-nav {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  .vc08-desktop-nav a {
    color: var(--vc08-text-dim);
    font-size: 1.35rem;
    font-weight: 600;
  }
  .vc08-desktop-nav a:hover { color: var(--vc08-accent); }
}

/* ===== Mobile menu ===== */
.vc08-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--vc08-bg-soft);
  z-index: 9999;
  padding: 70px 16px 30px;
  overflow-y: auto;
  transition: right 0.3s ease;
  border-left: 1px solid var(--vc08-border);
  box-shadow: -8px 0 30px rgba(0,0,0,0.5);
}
.vc08-mobile-menu.vc08-open { right: 0; }
.vc08-mobile-menu h3 {
  font-size: 1.3rem;
  color: var(--vc08-accent);
  text-transform: uppercase;
  margin: 16px 0 8px;
  letter-spacing: 1px;
}
.vc08-mobile-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--vc08-text);
  font-size: 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vc08-mobile-menu a:hover { background: rgba(222,184,135,0.08); color: var(--vc08-accent); text-decoration: none; }
.vc08-menu-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(250,240,230,0.1);
  border: 1px solid var(--vc08-border);
  color: var(--vc08-text);
  font-size: 1.6rem;
  cursor: pointer;
}
.vc08-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}
.vc08-overlay.vc08-open { display: block; }

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

/* ===== Hero ===== */
.vc08-hero {
  position: relative;
  padding: 18px 0 10px;
  background: radial-gradient(ellipse at top, rgba(222,184,135,0.15), transparent 60%);
}
.vc08-hero-inner {
  text-align: center;
  padding: 14px 6px;
}
.vc08-hero h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #FAF0E6, #DEB887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vc08-hero p {
  color: var(--vc08-text-dim);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.vc08-hero-cta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.vc08-btn-hero {
  padding: 12px 22px;
  font-size: 1.4rem;
}

/* ===== Carousel ===== */
.vc08-carousel {
  position: relative;
  margin: 14px 0 18px;
  border-radius: var(--vc08-radius);
  overflow: hidden;
  box-shadow: var(--vc08-shadow);
  border: 1px solid var(--vc08-border);
}
.vc08-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.vc08-carousel-slide {
  flex: 0 0 100%;
  position: relative;
}
.vc08-carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.vc08-carousel-cap {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(12,12,12,0.7);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--vc08-border);
  font-size: 1.25rem;
  color: var(--vc08-text);
  max-width: 70%;
}
.vc08-carousel-cap strong { color: var(--vc08-accent); display: block; font-size: 1.4rem; }
.vc08-carousel-dots {
  position: absolute;
  bottom: 8px; right: 12px;
  display: flex;
  gap: 6px;
}
.vc08-carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(250,240,230,0.4);
  border: none;
  cursor: pointer;
}
.vc08-carousel-dots button.vc08-active { background: var(--vc08-accent); width: 18px; border-radius: 4px; }

/* ===== Section ===== */
.vc08-section { padding: 18px 0; }
.vc08-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.vc08-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--vc08-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc08-section-title i { color: var(--vc08-accent); }
.vc08-section-title::before {
  content: "";
  display: inline-block;
  width: 4px; height: 22px;
  background: linear-gradient(180deg, #DEB887, #d9a441);
  border-radius: 3px;
  margin-right: 2px;
}
.vc08-section-more {
  font-size: 1.2rem;
  color: var(--vc08-accent);
}

/* ===== Game grid ===== */
.vc08-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 430px) {
  .vc08-grid { grid-template-columns: repeat(4, 1fr); }
}
.vc08-game-card {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius-sm);
  padding: 8px 6px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.vc08-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--vc08-accent);
  box-shadow: 0 8px 18px rgba(0,0,0,0.4);
  text-decoration: none;
}
.vc08-game-card img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.03);
}
.vc08-game-name {
  font-size: 1.1rem;
  color: var(--vc08-text);
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 30px;
}
.vc08-game-tag {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--vc08-accent);
  background: rgba(222,184,135,0.12);
  padding: 2px 6px;
  border-radius: 6px;
  margin-top: 4px;
}

/* Category badges */
.vc08-cat-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
}
.vc08-cat-list::-webkit-scrollbar { display: none; }
.vc08-cat-badge {
  flex: 0 0 auto;
  padding: 8px 14px;
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: 999px;
  color: var(--vc08-text);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.vc08-cat-badge i { color: var(--vc08-accent); margin-right: 4px; }

/* ===== Features / cards ===== */
.vc08-card {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius);
  padding: 14px;
  margin-bottom: 12px;
}
.vc08-card h3 {
  font-size: 1.5rem;
  color: var(--vc08-accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.vc08-card p {
  color: var(--vc08-text-dim);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.vc08-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.vc08-feature-item {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius-sm);
  padding: 12px;
  text-align: center;
}
.vc08-feature-item .vc08-icon {
  font-size: 2.6rem;
  color: var(--vc08-accent);
  margin-bottom: 6px;
}
.vc08-feature-item h4 {
  font-size: 1.35rem;
  color: var(--vc08-text);
  margin-bottom: 4px;
}
.vc08-feature-item p {
  font-size: 1.15rem;
  color: var(--vc08-text-dim);
}

/* ===== Steps ===== */
.vc08-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.vc08-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius-sm);
  padding: 12px;
}
.vc08-step-num {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DEB887, #d9a441);
  color: #0C0C0C;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.vc08-step h4 { font-size: 1.35rem; color: var(--vc08-text); margin-bottom: 4px; }
.vc08-step p { font-size: 1.2rem; color: var(--vc08-text-dim); }

/* ===== FAQ ===== */
.vc08-faq-item {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.vc08-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--vc08-text);
  padding: 12px 14px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.vc08-faq-q i { color: var(--vc08-accent); transition: transform 0.2s; }
.vc08-faq-item.vc08-open .vc08-faq-q i { transform: rotate(180deg); }
.vc08-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 14px;
  color: var(--vc08-text-dim);
  font-size: 1.25rem;
}
.vc08-faq-item.vc08-open .vc08-faq-a { max-height: 360px; padding: 0 14px 12px; }

/* ===== Testimonials ===== */
.vc08-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.vc08-testi {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius-sm);
  padding: 12px;
}
.vc08-testi-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.vc08-testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DEB887, #d9a441);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C0C0C;
  font-weight: 800;
  font-size: 1.4rem;
}
.vc08-testi-name { font-size: 1.3rem; color: var(--vc08-text); font-weight: 700; }
.vc08-testi-stars { color: #f5b301; font-size: 1.1rem; }
.vc08-testi p { font-size: 1.2rem; color: var(--vc08-text-dim); }

/* ===== Payment methods ===== */
.vc08-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.vc08-pay-item {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius-sm);
  padding: 10px 6px;
  text-align: center;
}
.vc08-pay-item .vc08-icon { font-size: 2.4rem; color: var(--vc08-accent); }
.vc08-pay-item span { display: block; font-size: 1.1rem; color: var(--vc08-text-dim); margin-top: 4px; }

/* ===== Winners ===== */
.vc08-winner-list { display: grid; grid-template-columns: 1fr; gap: 6px; }
.vc08-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
}
.vc08-winner span:first-child { color: var(--vc08-text); font-weight: 600; }
.vc08-winner span:last-child { color: #4cae50; font-weight: 800; }

/* ===== RTP table ===== */
.vc08-rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--vc08-bg-card);
  border-radius: var(--vc08-radius-sm);
  overflow: hidden;
  border: 1px solid var(--vc08-border);
}
.vc08-rtp-table th, .vc08-rtp-table td {
  padding: 8px 10px;
  font-size: 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vc08-rtp-table th { background: rgba(222,184,135,0.12); color: var(--vc08-accent); font-weight: 700; }
.vc08-rtp-table td:last-child { color: #4cae50; font-weight: 700; }

/* ===== CTA banner ===== */
.vc08-cta {
  background: linear-gradient(135deg, rgba(222,184,135,0.18), rgba(217,164,65,0.12));
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius);
  padding: 18px 14px;
  text-align: center;
  margin: 14px 0;
}
.vc08-cta h3 { font-size: 1.6rem; color: var(--vc08-text); margin-bottom: 6px; }
.vc08-cta p { font-size: 1.25rem; color: var(--vc08-text-dim); margin-bottom: 12px; }

/* ===== App download ===== */
.vc08-app-card {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.vc08-app-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #DEB887, #d9a441);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C0C0C;
  font-size: 2.6rem;
  flex: 0 0 64px;
}
.vc08-app-info { flex: 1; }
.vc08-app-info h4 { font-size: 1.45rem; color: var(--vc08-text); margin-bottom: 4px; }
.vc08-app-info p { font-size: 1.2rem; color: var(--vc08-text-dim); margin-bottom: 8px; }
.vc08-app-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.vc08-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--vc08-accent);
  color: #0C0C0C;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

/* ===== SEO text ===== */
.vc08-seo-text {
  background: var(--vc08-bg-card);
  border: 1px solid var(--vc08-border);
  border-radius: var(--vc08-radius);
  padding: 14px;
  margin: 12px 0;
}
.vc08-seo-text h2 {
  font-size: 1.55rem;
  color: var(--vc08-accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.vc08-seo-text h3 {
  font-size: 1.35rem;
  color: var(--vc08-text);
  margin: 10px 0 6px;
  font-weight: 700;
}
.vc08-seo-text p {
  font-size: 1.25rem;
  color: var(--vc08-text-dim);
  line-height: 1.7;
  margin-bottom: 8px;
}
.vc08-seo-text a { color: var(--vc08-accent); font-weight: 600; }

/* ===== Footer ===== */
.vc08-footer {
  background: var(--vc08-bg-soft);
  border-top: 1px solid var(--vc08-border);
  padding: 18px 0 24px;
  margin-top: 14px;
}
.vc08-footer-brand {
  font-size: 1.35rem;
  color: var(--vc08-text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}
.vc08-footer-brand strong { color: var(--vc08-accent); }
.vc08-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.vc08-footer-promo button, .vc08-footer-promo a.vc08-btn {
  flex: 1 1 auto;
  min-width: 90px;
}
.vc08-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.vc08-footer-links a {
  color: var(--vc08-text-dim);
  font-size: 1.2rem;
  padding: 4px 0;
}
.vc08-footer-links a:hover { color: var(--vc08-accent); }
.vc08-footer-copy {
  text-align: center;
  font-size: 1.15rem;
  color: #999;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

/* ===== Bottom nav ===== */
.vc08-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(22,20,18,0.98), rgba(12,12,12,1));
  border-top: 1px solid var(--vc08-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 62px;
  padding: 4px 0;
}
.vc08-bottom-nav button, .vc08-bottom-nav a {
  flex: 1 1 0;
  min-width: 60px;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--vc08-text-dim);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, transform 0.15s;
  position: relative;
}
.vc08-bottom-nav button:active, .vc08-bottom-nav a:active { transform: scale(0.92); }
.vc08-bottom-nav .vc08-icon-wrap {
  font-size: 2.2rem;
  line-height: 1;
}
.vc08-bottom-nav .vc08-nav-label { font-size: 1rem; font-weight: 600; }
.vc08-bottom-nav button:hover, .vc08-bottom-nav a:hover { color: var(--vc08-accent); text-decoration: none; }
.vc08-bottom-nav .vc08-active { color: var(--vc08-accent); }
.vc08-bottom-nav .vc08-active::before {
  content: "";
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 3px;
  background: var(--vc08-accent);
  border-radius: 0 0 4px 4px;
}
.vc08-nav-badge {
  position: absolute;
  top: 4px; right: 22%;
  background: var(--vc08-red);
  color: #fff;
  font-size: 0.85rem;
  padding: 1px 5px;
  border-radius: 8px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .vc08-bottom-nav { display: none; }
}

/* Utility */
.vc08-hidden { display: none !important; }
.vc08-text-center { text-align: center; }
.vc08-mt-8 { margin-top: 8px; }
.vc08-mt-14 { margin-top: 14px; }
.vc08-mb-8 { margin-bottom: 8px; }

/* Inline promo link */
.vc08-promo-link {
  color: var(--vc08-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.vc08-promo-link:hover { color: var(--vc08-accent-2); }
