/*!
 * RS8 Click - Main Stylesheet (style-816a.css)
 * All custom classes use the vac7- prefix for namespace isolation.
 * Mobile-first design, max-width 430px column.
 */

:root {
  --vac7-bg: #141414;
  --vac7-bg-alt: #1f1f1f;
  --vac7-bg-card: #262626;
  --vac7-primary: #FFCC33;
  --vac7-accent: #FF8A80;
  --vac7-pink: #AD1457;
  --vac7-lavender: #C9C9FF;
  --vac7-text: #ffffff;
  --vac7-text-muted: #b8b8b8;
  --vac7-border: #333333;
  --vac7-gradient: linear-gradient(135deg, #FFCC33 0%, #AD1457 100%);
  --vac7-gradient-soft: linear-gradient(135deg, rgba(255,204,51,0.15) 0%, rgba(173,20,87,0.15) 100%);
}

/* Root font 62.5% -> 1rem = 10px */
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
* { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--vac7-bg);
  color: var(--vac7-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--vac7-primary); text-decoration: none; }

/* Layout helpers */
.vac7-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.vac7-wrapper { width: 100%; }

/* ===== Header ===== */
.vac7-header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vac7-border);
  z-index: 1000;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vac7-logo { display: flex; align-items: center; gap: 0.6rem; }
.vac7-logo img { width: 30px; height: 30px; border-radius: 7px; }
.vac7-logo-text { font-size: 1.9rem; font-weight: 800; color: var(--vac7-primary); letter-spacing: 0.5px; }
.vac7-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.vac7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  min-height: 36px;
  text-decoration: none;
}
.vac7-btn:active { transform: scale(0.95); }
.vac7-btn-register { background: var(--vac7-gradient); color: #141414; box-shadow: 0 3px 10px rgba(255, 204, 51, 0.3); }
.vac7-btn-login { background: transparent; color: var(--vac7-primary); border: 1.5px solid var(--vac7-primary); }
.vac7-btn-block { display: flex; width: 100%; }

.vac7-menu-toggle {
  background: transparent;
  border: none;
  color: var(--vac7-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Slide-in mobile menu ===== */
.vac7-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: var(--vac7-bg-alt);
  z-index: 9999;
  padding: 6rem 1.5rem 2rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid var(--vac7-border);
}
.vac7-mobile-menu.vac7-menu-open { right: 0; box-shadow: -8px 0 30px rgba(0,0,0,0.5); }
.vac7-mobile-menu a {
  display: block;
  padding: 1.1rem 0.5rem;
  color: var(--vac7-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--vac7-border);
}
.vac7-mobile-menu a:hover, .vac7-mobile-menu a:focus { color: var(--vac7-primary); }
.vac7-menu-close {
  position: absolute; top: 1rem; right: 1rem;
  background: transparent; border: none; color: var(--vac7-text);
  font-size: 2.6rem; cursor: pointer; min-width: 44px; min-height: 44px;
}

/* ===== Main content spacing ===== */
main { padding-top: 6.5rem; padding-bottom: 80px; }

/* ===== Carousel ===== */
.vac7-carousel {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
  background: var(--vac7-bg-card);
}
.vac7-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.vac7-carousel-slide.vac7-active { opacity: 1; }
.vac7-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.vac7-carousel-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 2;
}
.vac7-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer; border: none; padding: 0;
  transition: all 0.3s;
}
.vac7-carousel-dot.vac7-active { background: var(--vac7-primary); width: 22px; border-radius: 5px; }

/* ===== Sections ===== */
.vac7-section { margin-bottom: 2.2rem; }
.vac7-section-title {
  font-size: 1.9rem; font-weight: 800;
  margin-bottom: 1.1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--vac7-primary);
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--vac7-text);
}
.vac7-section-title .material-icons,
.vac7-section-title i { color: var(--vac7-primary); font-size: 2.2rem; }

.vac7-cat-tag {
  display: inline-block;
  background: var(--vac7-pink);
  color: #fff;
  font-size: 1.15rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ===== Game grid ===== */
.vac7-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.vac7-game-card {
  background: var(--vac7-bg-card);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  border: 1px solid var(--vac7-border);
  text-decoration: none;
  color: var(--vac7-text);
}
.vac7-game-card:active { transform: scale(0.96); border-color: var(--vac7-primary); }
.vac7-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vac7-game-name {
  font-size: 1.1rem; text-align: center;
  padding: 0.5rem 0.3rem; color: var(--vac7-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 600;
}

/* ===== Card / panel ===== */
.vac7-card {
  background: var(--vac7-bg-card);
  border-radius: 1.2rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--vac7-border);
}
.vac7-card h3 { font-size: 1.6rem; color: var(--vac7-primary); margin-bottom: 0.8rem; }
.vac7-card p { font-size: 1.4rem; color: var(--vac7-text-muted); margin-bottom: 0.8rem; line-height: 1.7; }
.vac7-card p:last-child { margin-bottom: 0; }

/* ===== Promo link + banner ===== */
.vac7-promo-link {
  color: var(--vac7-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vac7-promo-link:hover { color: var(--vac7-accent); }
.vac7-promo-banner {
  display: block;
  background: var(--vac7-gradient);
  color: #141414;
  text-align: center;
  padding: 1.3rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 1.2rem 0;
  cursor: pointer;
  border: none;
  width: 100%;
  box-shadow: 0 4px 14px rgba(255,204,51,0.25);
}
.vac7-promo-banner:active { transform: scale(0.98); }

/* ===== Hero ===== */
.vac7-hero { text-align: center; padding: 0.5rem 0 1.5rem; }
.vac7-hero h1 {
  font-size: 2.6rem; font-weight: 800;
  background: var(--vac7-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.vac7-hero p { font-size: 1.45rem; color: var(--vac7-text-muted); line-height: 1.6; }

/* ===== Features ===== */
.vac7-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.vac7-feature-item {
  background: var(--vac7-bg-card);
  padding: 1.3rem 1rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--vac7-border);
}
.vac7-feature-item .vac7-feat-icon { font-size: 3rem; color: var(--vac7-primary); margin-bottom: 0.6rem; }
.vac7-feature-item h4 { font-size: 1.4rem; margin-bottom: 0.4rem; color: var(--vac7-text); }
.vac7-feature-item p { font-size: 1.2rem; color: var(--vac7-text-muted); line-height: 1.5; }

/* ===== Stats / RTP ===== */
.vac7-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}
.vac7-stat-box {
  background: var(--vac7-bg-alt); padding: 1.1rem 0.5rem;
  border-radius: 0.8rem; text-align: center; border: 1px solid var(--vac7-border);
}
.vac7-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--vac7-accent); display: block; }
.vac7-stat-label { font-size: 1.1rem; color: var(--vac7-text-muted); margin-top: 0.2rem; display: block; }

/* ===== Steps ===== */
.vac7-steps { counter-reset: step; }
.vac7-steps li {
  position: relative;
  padding: 0.9rem 0 0.9rem 3.8rem;
  font-size: 1.35rem;
  color: var(--vac7-text);
  counter-increment: step;
  border-bottom: 1px solid var(--vac7-border);
  line-height: 1.6;
}
.vac7-steps li:last-child { border-bottom: none; }
.vac7-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0.9rem;
  width: 2.8rem; height: 2.8rem;
  background: var(--vac7-gradient);
  color: #141414;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem;
}

/* ===== Testimonials ===== */
.vac7-testimonial {
  background: var(--vac7-bg-card);
  padding: 1.3rem;
  border-radius: 1rem;
  margin-bottom: 0.9rem;
  border-left: 3px solid var(--vac7-accent);
}
.vac7-testimonial p { font-size: 1.35rem; color: var(--vac7-text); font-style: italic; margin-bottom: 0.5rem; line-height: 1.6; }
.vac7-testimonial .vac7-author { font-size: 1.25rem; color: var(--vac7-primary); font-weight: 700; }

/* ===== Payment ===== */
.vac7-payments { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.vac7-payment-item {
  background: var(--vac7-bg-card); padding: 0.8rem 1.2rem;
  border-radius: 0.8rem; font-size: 1.3rem;
  border: 1px solid var(--vac7-border);
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--vac7-text);
}
.vac7-payment-item i, .vac7-payment-item .material-icons { color: var(--vac7-primary); }

/* ===== Winners ===== */
.vac7-winners { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.7rem; }
.vac7-winner {
  background: var(--vac7-bg-card); padding: 0.9rem; border-radius: 0.8rem;
  border: 1px solid var(--vac7-border); font-size: 1.2rem;
}
.vac7-winner .vac7-wname { color: var(--vac7-lavender); font-weight: 700; display: block; }
.vac7-winner .vac7-wgame { color: var(--vac7-text-muted); font-size: 1.1rem; display: block; }
.vac7-winner .vac7-wamount { color: var(--vac7-accent); font-weight: 800; font-size: 1.5rem; display: block; margin-top: 0.2rem; }

/* ===== FAQ ===== */
.vac7-faq-item {
  background: var(--vac7-bg-card);
  padding: 1.2rem;
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--vac7-border);
}
.vac7-faq-item h4 { font-size: 1.4rem; color: var(--vac7-primary); margin-bottom: 0.5rem; }
.vac7-faq-item p { font-size: 1.3rem; color: var(--vac7-text-muted); line-height: 1.6; }

/* ===== App download CTA ===== */
.vac7-app-cta {
  background: var(--vac7-gradient-soft);
  border: 1px solid var(--vac7-pink);
  border-radius: 1.2rem;
  padding: 1.5rem;
  text-align: center;
}
.vac7-app-cta h3 { font-size: 1.7rem; color: var(--vac7-primary); margin-bottom: 0.5rem; }
.vac7-app-cta p { font-size: 1.35rem; color: var(--vac7-text); margin-bottom: 1rem; }
.vac7-app-buttons { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.vac7-app-buttons .vac7-btn { background: var(--vac7-bg); color: var(--vac7-primary); border: 1px solid var(--vac7-primary); }

/* ===== Footer ===== */
.vac7-footer {
  background: var(--vac7-bg-alt);
  padding: 2rem 1.2rem 2.5rem;
  border-top: 1px solid var(--vac7-border);
  margin-top: 2rem;
}
.vac7-footer-brand { font-size: 1.35rem; color: var(--vac7-text-muted); margin-bottom: 1.1rem; line-height: 1.7; }
.vac7-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-bottom: 1.1rem; }
.vac7-footer-links a { font-size: 1.3rem; color: var(--vac7-lavender); }
.vac7-footer-links a:hover { color: var(--vac7-primary); }
.vac7-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.1rem; }
.vac7-footer-promos .vac7-btn { font-size: 1.2rem; padding: 0.6rem 1.1rem; }
.vac7-copyright { font-size: 1.2rem; color: var(--vac7-text-muted); text-align: center; padding-top: 1rem; border-top: 1px solid var(--vac7-border); }

/* ===== Bottom nav ===== */
.vac7-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--vac7-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
  z-index: 1000;
  padding: 0 0.3rem;
}
.vac7-bottom-nav-btn {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  background: transparent; border: none; color: var(--vac7-text-muted);
  font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none;
  min-width: 60px; min-height: 60px; padding: 0.4rem;
  transition: color 0.2s, transform 0.2s;
}
.vac7-bottom-nav-btn .vac7-bn-icon { font-size: 2.3rem; line-height: 1; }
.vac7-bottom-nav-btn:active { transform: scale(0.88); }
.vac7-bottom-nav-btn.vac7-nav-active { color: var(--vac7-primary); }
.vac7-bottom-nav-btn.vac7-nav-promo { color: var(--vac7-accent); }
.vac7-bottom-nav-btn.vac7-nav-promo .vac7-bn-badge {
  position: absolute; top: 0.4rem; right: 0.6rem;
  background: var(--vac7-pink); color: #fff; font-size: 0.9rem;
  padding: 0.1rem 0.4rem; border-radius: 999px; font-weight: 700;
}

/* ===== Desktop: hide bottom nav ===== */
@media (min-width: 769px) {
  .vac7-bottom-nav { display: none; }
  main { padding-bottom: 2rem; }
}
