/**
 * Classic Game Zone - Core CSS Stylesheet
 * Prefix: v09a-
 * Color Palette: #CD853F (gold) | #3A3A3A (dark) | #48D1CC (teal) | #C9C9FF (lavender)
 * Mobile-first design, max-width: 430px
 */

/* CSS Variables */
:root {
  --v09a-primary: #CD853F;
  --v09a-bg: #3A3A3A;
  --v09a-accent: #48D1CC;
  --v09a-light: #C9C9FF;
  --v09a-bg-dark: #2A2A2A;
  --v09a-bg-card: #333333;
  --v09a-text: #F5F5F5;
  --v09a-text-muted: #BBBBBB;
  --v09a-gold: #FFD700;
  --v09a-radius: 8px;
  --v09a-shadow: 0 2px 12px rgba(0,0,0,0.3);
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--v09a-bg);
  color: var(--v09a-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--v09a-accent); text-decoration: none; }
a:hover { color: var(--v09a-primary); }
img { max-width: 100%; height: auto; display: block; }

/* ========== HEADER ========== */
.v09a-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: var(--v09a-bg-dark);
  border-bottom: 2px solid var(--v09a-primary);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.v09a-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v09a-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.v09a-logo-area span {
  color: var(--v09a-primary);
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
}
.v09a-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v09a-btn-register {
  background: var(--v09a-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.v09a-btn-register:hover { background: #B8732E; transform: scale(1.03); }
.v09a-btn-login {
  background: transparent;
  color: var(--v09a-accent);
  border: 1.5px solid var(--v09a-accent);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.v09a-btn-login:hover { background: var(--v09a-accent); color: var(--v09a-bg); }
.v09a-menu-toggle {
  background: none;
  border: none;
  color: var(--v09a-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
}

/* ========== MOBILE MENU ========== */
.v09a-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--v09a-bg-dark);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 1.5rem;
  overflow-y: auto;
}
.v09a-menu-active { right: 0 !important; }
.v09a-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--v09a-primary);
}
.v09a-menu-header h3 { color: var(--v09a-primary); font-size: 1.6rem; }
.v09a-menu-close {
  background: none;
  border: none;
  color: var(--v09a-text);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.v09a-menu-nav { list-style: none; }
.v09a-menu-nav li { margin-bottom: 0.8rem; }
.v09a-menu-nav a {
  color: var(--v09a-text);
  font-size: 1.4rem;
  display: block;
  padding: 0.7rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.v09a-menu-nav a:hover {
  background: rgba(205,133,63,0.15);
  color: var(--v09a-primary);
  padding-left: 1rem;
}
.v09a-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}
.v09a-overlay-active { display: block; }

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

/* ========== CAROUSEL ========== */
.v09a-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--v09a-radius) var(--v09a-radius);
}
.v09a-carousel-slide {
  display: none;
  cursor: pointer;
  position: relative;
}
.v09a-slide-active { display: block; }
.v09a-carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.v09a-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.v09a-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.v09a-dot-active { background: var(--v09a-primary); transform: scale(1.2); }

/* ========== SECTION TITLES ========== */
.v09a-section-title {
  color: var(--v09a-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--v09a-accent);
}
.v09a-section-title small {
  display: block;
  color: var(--v09a-text-muted);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.3rem;
}

/* ========== GAME GRID ========== */
.v09a-game-section {
  padding: 0.5rem 1rem;
}
.v09a-cat-label {
  color: var(--v09a-accent);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v09a-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.v09a-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--v09a-bg-card);
  border-radius: var(--v09a-radius);
  padding: 0.5rem 0.3rem;
}
.v09a-game-item:hover { transform: scale(1.05); }
.v09a-game-item img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  margin: 0 auto 0.3rem;
  object-fit: cover;
}
.v09a-game-item span {
  font-size: 1rem;
  color: var(--v09a-text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== CONTENT MODULES ========== */
.v09a-content-block {
  padding: 1rem;
  margin: 1rem;
  background: var(--v09a-bg-card);
  border-radius: var(--v09a-radius);
  box-shadow: var(--v09a-shadow);
}
.v09a-content-block h2 {
  color: var(--v09a-primary);
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}
.v09a-content-block h3 {
  color: var(--v09a-accent);
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
}
.v09a-content-block p {
  color: var(--v09a-text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.v09a-content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.v09a-content-block li {
  color: var(--v09a-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* ========== PROMO BUTTON INLINE ========== */
.v09a-promo-link {
  color: var(--v09a-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.v09a-promo-link:hover { color: var(--v09a-gold); }
.v09a-cta-btn {
  display: inline-block;
  background: var(--v09a-primary);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.25s;
  margin: 0.5rem 0;
}
.v09a-cta-btn:hover { background: #B8732E; transform: scale(1.04); box-shadow: 0 4px 15px rgba(205,133,63,0.4); }
.v09a-cta-center { text-align: center; display: block; }

/* ========== RTP TABLE ========== */
.v09a-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0;
  font-size: 1.2rem;
}
.v09a-rtp-table th {
  background: var(--v09a-primary);
  color: #fff;
  padding: 0.5rem;
  text-align: left;
  font-weight: 600;
}
.v09a-rtp-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--v09a-text-muted);
}
.v09a-rtp-table tr:hover td { background: rgba(205,133,63,0.08); }

/* ========== TESTIMONIALS ========== */
.v09a-testimonial {
  background: rgba(72,209,204,0.08);
  border-left: 3px solid var(--v09a-accent);
  padding: 0.8rem 1rem;
  margin: 0.8rem 0;
  border-radius: 0 var(--v09a-radius) var(--v09a-radius) 0;
}
.v09a-testimonial p { margin-bottom: 0.3rem; }
.v09a-testimonial cite {
  color: var(--v09a-accent);
  font-style: normal;
  font-size: 1.1rem;
}

/* ========== FOOTER ========== */
.v09a-footer {
  background: var(--v09a-bg-dark);
  padding: 2rem 1rem 3rem;
  border-top: 2px solid var(--v09a-primary);
  margin-top: 2rem;
}
.v09a-footer-desc {
  color: var(--v09a-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.v09a-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.v09a-footer-links a {
  background: rgba(205,133,63,0.15);
  color: var(--v09a-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.v09a-footer-links a:hover { background: var(--v09a-primary); color: #fff; }
.v09a-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
  justify-content: center;
}
.v09a-partners img {
  width: 50px;
  height: 30px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.v09a-partners img:hover { opacity: 1; }
.v09a-copyright {
  text-align: center;
  color: var(--v09a-text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== BOTTOM NAV ========== */
.v09a-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: var(--v09a-bg-dark);
  border-top: 2px solid var(--v09a-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.4);
}
.v09a-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--v09a-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.2rem;
  gap: 0.2rem;
}
.v09a-bottom-btn:hover, .v09a-bottom-btn:focus {
  color: var(--v09a-primary);
  transform: scale(1.1);
}
.v09a-bottom-btn.active {
  color: var(--v09a-primary);
}
.v09a-bottom-btn .v09a-bnav-icon {
  font-size: 22px;
  line-height: 1;
}
.v09a-bottom-btn .v09a-bnav-text {
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
}
.v09a-bottom-btn.active .v09a-bnav-icon {
  text-shadow: 0 0 8px rgba(205,133,63,0.5);
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .v09a-bottom-nav { display: none; }
}

/* ========== BACK TO TOP ========== */
.v09a-back-top {
  position: fixed;
  bottom: 75px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--v09a-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: all 0.2s;
  line-height: 1;
}
.v09a-back-top:hover { transform: scale(1.1); }
.v09a-back-top-show { display: flex; }

/* ========== WINNER SHOWCASE ========== */
.v09a-winner-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v09a-winner-item:last-child { border-bottom: none; }
.v09a-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v09a-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.v09a-winner-info { flex: 1; }
.v09a-winner-name {
  color: var(--v09a-text);
  font-weight: 600;
  font-size: 1.2rem;
}
.v09a-winner-detail {
  color: var(--v09a-text-muted);
  font-size: 1rem;
}
.v09a-winner-amount {
  color: var(--v09a-gold);
  font-weight: 700;
  font-size: 1.3rem;
}

/* ========== PAYMENT ICONS ========== */
.v09a-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0;
}
.v09a-payment-item {
  background: var(--v09a-bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  color: var(--v09a-text-muted);
  text-align: center;
}

/* ========== APP DOWNLOAD CTA ========== */
.v09a-app-cta {
  background: linear-gradient(135deg, var(--v09a-primary), #B8732E);
  border-radius: var(--v09a-radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1rem;
}
.v09a-app-cta h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.v09a-app-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.v09a-app-cta .v09a-cta-btn {
  background: #fff;
  color: var(--v09a-primary);
}

/* ========== FAQ ACCORDION ========== */
.v09a-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.8rem 0;
}
.v09a-faq-q {
  color: var(--v09a-primary);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.v09a-faq-a {
  color: var(--v09a-text-muted);
  font-size: 1.2rem;
  line-height: 1.5;
  padding-left: 1rem;
}

/* ========== INTERNAL LINKS ========== */
.v09a-internal-link {
  color: var(--v09a-accent);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.v09a-internal-link:hover { color: var(--v09a-primary); }

/* ========== FEATURES GRID ========== */
.v09a-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 0.8rem 0;
}
.v09a-feature-card {
  background: rgba(72,209,204,0.06);
  border: 1px solid rgba(72,209,204,0.15);
  border-radius: var(--v09a-radius);
  padding: 0.8rem;
  text-align: center;
}
.v09a-feature-card .v09a-fc-icon {
  font-size: 2rem;
  color: var(--v09a-accent);
  margin-bottom: 0.4rem;
}
.v09a-feature-card h4 {
  color: var(--v09a-primary);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.v09a-feature-card p {
  color: var(--v09a-text-muted);
  font-size: 1rem;
  line-height: 1.3;
}

/* ========== ACHIEVEMENTS ========== */
.v09a-achievement {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v09a-ach-icon {
  font-size: 2rem;
  color: var(--v09a-gold);
  flex-shrink: 0;
}
.v09a-ach-text h4 { color: var(--v09a-text); font-size: 1.2rem; }
.v09a-ach-text p { color: var(--v09a-text-muted); font-size: 1rem; }

/* ========== TRICKS ========== */
.v09a-trick-item {
  counter-increment: v09a-trick;
  padding: 0.6rem 0 0.6rem 2.5rem;
  position: relative;
}
.v09a-trick-item::before {
  content: counter(v09a-trick);
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 2rem;
  height: 2rem;
  background: var(--v09a-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.v09a-trick-item h4 { color: var(--v09a-accent); font-size: 1.2rem; margin-bottom: 0.2rem; }
.v09a-trick-item p { color: var(--v09a-text-muted); font-size: 1.1rem; }

/* ========== RESPONSIVE DESKTOP ========== */
@media (min-width: 769px) {
  body { max-width: 100%; }
  .v09a-header { max-width: 100%; }
  .v09a-bottom-nav { display: none; }
  .v09a-main { padding-bottom: 20px; }
  .v09a-game-grid { grid-template-columns: repeat(6, 1fr); }
}
