/**
 * SlotsGo Core Stylesheet - theme-576c.css
 * All classes use "vcf2-" prefix for namespace isolation
 * Color scheme: #8470FF | #141414 | #CC99FF
 * Mobile-first design, max-width 430px
 */

/* === CSS Variables === */
:root {
  --vcf2-primary: #8470FF;
  --vcf2-primary-dark: #6a58d4;
  --vcf2-primary-light: #9f8fff;
  --vcf2-bg: #141414;
  --vcf2-bg-light: #1e1e2a;
  --vcf2-bg-card: #1c1c2e;
  --vcf2-accent: #CC99FF;
  --vcf2-accent-glow: rgba(204, 153, 255, 0.3);
  --vcf2-text: #f0f0f0;
  --vcf2-text-muted: #a0a0b8;
  --vcf2-text-dim: #6a6a80;
  --vcf2-success: #4ade80;
  --vcf2-warning: #fbbf24;
  --vcf2-danger: #f87171;
  --vcf2-border: rgba(132, 112, 255, 0.2);
  --vcf2-radius: 10px;
  --vcf2-radius-lg: 16px;
  --vcf2-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --vcf2-shadow-glow: 0 0 20px rgba(132, 112, 255, 0.3);
  --vcf2-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* === Base Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: var(--vcf2-font);
  background: var(--vcf2-bg);
  color: var(--vcf2-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
a { text-decoration: none; color: var(--vcf2-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === Layout === */
.vcf2-container { width: 100%; padding: 0 1.2rem; margin: 0 auto; }
.vcf2-wrapper { padding: 1.6rem 0; }
.vcf2-section { padding: 2rem 0; }
.vcf2-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vcf2-text);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--vcf2-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vcf2-section-title i { color: var(--vcf2-primary); font-size: 2rem; }

/* === Header === */
.vcf2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #141414 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vcf2-border);
  max-width: 430px;
  margin: 0 auto;
}
.vcf2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  height: 56px;
}
.vcf2-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.vcf2-logo-wrap img { width: 28px; height: 28px; border-radius: 6px; }
.vcf2-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--vcf2-primary), var(--vcf2-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vcf2-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.vcf2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--vcf2-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  min-height: 36px;
  min-width: 44px;
  text-align: center;
}
.vcf2-btn-primary {
  background: linear-gradient(135deg, var(--vcf2-primary), var(--vcf2-primary-dark));
  color: #fff;
}
.vcf2-btn-primary:hover { box-shadow: var(--vcf2-shadow-glow); transform: translateY(-1px); }
.vcf2-btn-accent {
  background: linear-gradient(135deg, var(--vcf2-accent), #b377dd);
  color: #141414;
}
.vcf2-btn-accent:hover { box-shadow: 0 0 15px var(--vcf2-accent-glow); }
.vcf2-btn-outline {
  background: transparent;
  border: 1px solid var(--vcf2-primary);
  color: var(--vcf2-primary);
}
.vcf2-btn-outline:hover { background: rgba(132, 112, 255, 0.1); }
.vcf2-btn-lg { padding: 1rem 2rem; font-size: 1.4rem; width: 100%; }
.vcf2-menu-toggle {
  background: none;
  border: none;
  color: var(--vcf2-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Mobile Menu === */
.vcf2-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--vcf2-bg-light);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 1.6rem;
  overflow-y: auto;
}
.vcf2-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vcf2-border);
}
.vcf2-mobile-menu-close {
  background: none;
  border: none;
  color: var(--vcf2-text);
  font-size: 2rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcf2-mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1rem;
  color: var(--vcf2-text);
  font-size: 1.4rem;
  border-radius: var(--vcf2-radius);
  transition: background 0.2s;
}
.vcf2-mobile-menu nav a:hover { background: rgba(132, 112, 255, 0.1); }
.vcf2-mobile-menu nav a i { font-size: 1.8rem; color: var(--vcf2-primary); width: 24px; text-align: center; }
.vcf2-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
}

/* === Bottom Navigation === */
.vcf2-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(30, 30, 42, 0.98), #141414);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--vcf2-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  max-width: 430px;
  margin: 0 auto;
}
.vcf2-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: var(--vcf2-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.4rem;
  position: relative;
}
.vcf2-bottom-nav-btn i { font-size: 2.2rem; }
.vcf2-bottom-nav-btn span { font-size: 1rem; font-weight: 500; }
.vcf2-bottom-nav-btn:hover,
.vcf2-bottom-nav-btn.vcf2-bottom-active {
  color: var(--vcf2-primary);
}
.vcf2-bottom-nav-btn.vcf2-bottom-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--vcf2-primary);
  border-radius: 0 0 3px 3px;
}
@media (min-width: 769px) {
  .vcf2-bottom-nav { display: none; }
}

/* === Carousel === */
.vcf2-carousel {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--vcf2-radius-lg);
  margin: 1rem 0;
}
.vcf2-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.vcf2-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.vcf2-carousel-slide.vcf2-carousel-active { opacity: 1; }
.vcf2-carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(20, 20, 20, 0.9));
  color: #fff;
}
.vcf2-carousel-overlay h3 { font-size: 1.4rem; font-weight: 700; }
.vcf2-carousel-dots {
  position: absolute;
  bottom: 0.6rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
}
.vcf2-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
}
.vcf2-carousel-dot.vcf2-carousel-active { background: var(--vcf2-primary); }

/* === Game Grid === */
.vcf2-game-category { margin-bottom: 2rem; }
.vcf2-category-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vcf2-accent);
  margin-bottom: 0.8rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--vcf2-primary);
  padding: 0.4rem 0.8rem;
}
.vcf2-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.vcf2-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.vcf2-game-item:hover { transform: scale(1.05); }
.vcf2-game-item img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--vcf2-border);
  object-fit: cover;
}
.vcf2-game-item span {
  font-size: 1.1rem;
  color: var(--vcf2-text-muted);
  text-align: center;
  line-height: 1.2;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === Cards === */
.vcf2-card {
  background: var(--vcf2-bg-card);
  border-radius: var(--vcf2-radius-lg);
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--vcf2-border);
}
.vcf2-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vcf2-text);
  margin-bottom: 0.8rem;
}

/* === Footer === */
.vcf2-footer {
  background: var(--vcf2-bg-light);
  padding: 2rem 1.2rem 3rem;
  border-top: 1px solid var(--vcf2-border);
  margin-top: 2rem;
}
.vcf2-footer-brand {
  font-size: 1.2rem;
  color: var(--vcf2-text-muted);
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}
.vcf2-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.vcf2-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  background: rgba(132, 112, 255, 0.1);
  border: 1px solid var(--vcf2-border);
  border-radius: var(--vcf2-radius);
  color: var(--vcf2-text);
  font-size: 1.1rem;
  transition: all 0.2s;
}
.vcf2-footer-links a:hover { background: rgba(132, 112, 255, 0.2); border-color: var(--vcf2-primary); }
.vcf2-footer-partners {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.vcf2-footer-partners img { height: 24px; opacity: 0.6; }
.vcf2-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--vcf2-text-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--vcf2-border);
}

/* === Content Sections === */
.vcf2-content-block { margin-bottom: 2rem; }
.vcf2-content-block h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--vcf2-text);
  margin-bottom: 1rem;
}
.vcf2-content-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vcf2-accent);
  margin: 1rem 0 0.6rem;
}
.vcf2-content-block p {
  font-size: 1.3rem;
  line-height: 1.7rem;
  color: var(--vcf2-text-muted);
  margin-bottom: 0.8rem;
}
.vcf2-highlight-text {
  color: var(--vcf2-primary);
  font-weight: 600;
}
.vcf2-accent-text {
  color: var(--vcf2-accent);
  font-weight: 600;
}
.vcf2-link-text {
  color: var(--vcf2-primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* === FAQ Accordion === */
.vcf2-faq-item {
  background: var(--vcf2-bg-card);
  border-radius: var(--vcf2-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--vcf2-border);
}
.vcf2-faq-q {
  padding: 1.2rem;
  font-weight: 600;
  color: var(--vcf2-text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vcf2-faq-q i { color: var(--vcf2-primary); transition: transform 0.2s; }
.vcf2-faq-a {
  padding: 0 1.2rem 1.2rem;
  color: var(--vcf2-text-muted);
  font-size: 1.2rem;
  line-height: 1.6rem;
}

/* === Animations === */
.vcf2-animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.vcf2-animate-in.vcf2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Spacing Utilities === */
.vcf2-mt-1 { margin-top: 1rem; }
.vcf2-mt-2 { margin-top: 2rem; }
.vcf2-mb-1 { margin-bottom: 1rem; }
.vcf2-mb-2 { margin-bottom: 2rem; }
.vcf2-p-1 { padding: 1rem; }
.vcf2-text-center { text-align: center; }
.vcf2-hidden { display: none; }

/* === Stats/Numbers === */
.vcf2-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.vcf2-stat-item {
  background: var(--vcf2-bg-card);
  border-radius: var(--vcf2-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--vcf2-border);
}
.vcf2-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--vcf2-primary);
}
.vcf2-stat-label {
  font-size: 1.1rem;
  color: var(--vcf2-text-muted);
}

/* === Testimonial === */
.vcf2-testimonial {
  background: var(--vcf2-bg-card);
  border-radius: var(--vcf2-radius-lg);
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--vcf2-primary);
}
.vcf2-testimonial-text {
  font-size: 1.2rem;
  color: var(--vcf2-text-muted);
  line-height: 1.6rem;
  margin-bottom: 0.6rem;
  font-style: italic;
}
.vcf2-testimonial-author {
  font-size: 1.1rem;
  color: var(--vcf2-accent);
  font-weight: 600;
}

/* === Winner Showcase === */
.vcf2-winner-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--vcf2-bg-card);
  border-radius: var(--vcf2-radius);
  margin-bottom: 0.6rem;
  border: 1px solid var(--vcf2-border);
}
.vcf2-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vcf2-primary), var(--vcf2-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.vcf2-winner-info { flex: 1; }
.vcf2-winner-name { font-size: 1.2rem; font-weight: 600; color: var(--vcf2-text); }
.vcf2-winner-game { font-size: 1rem; color: var(--vcf2-text-dim); }
.vcf2-winner-amount { font-size: 1.3rem; font-weight: 700; color: var(--vcf2-success); }

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

/* === CTA Banner === */
.vcf2-cta-banner {
  background: linear-gradient(135deg, var(--vcf2-primary), var(--vcf2-accent));
  border-radius: var(--vcf2-radius-lg);
  padding: 2rem 1.2rem;
  text-align: center;
  margin: 2rem 0;
}
.vcf2-cta-banner h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.vcf2-cta-banner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.vcf2-cta-banner .vcf2-btn {
  background: #fff;
  color: var(--vcf2-primary);
  font-weight: 700;
  border: none;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  body { padding-top: 56px; padding-bottom: 80px; }
  main { padding-bottom: 80px; }
}
@media (min-width: 769px) {
  body { max-width: 430px; }
}
