/*!
 * d9d9 login - Site stylesheet
 * Prefix: v9e0-
 * Palette: #CD853F | #BDB76B | #E0FFFF | #FFCC33 | #1E1E1E
 * Mobile-first; root font 62.5% so 1rem = 10px.
 */

:root {
  --v9e0-primary: #CD853F;
  --v9e0-secondary: #BDB76B;
  --v9e0-accent: #FFCC33;
  --v9e0-light: #E0FFFF;
  --v9e0-bg: #1E1E1E;
  --v9e0-bg-soft: #262320;
  --v9e0-card: #2c2722;
  --v9e0-text: #E0FFFF;
  --v9e0-text-muted: #c9b98a;
  --v9e0-border: rgba(189, 183, 107, 0.25);
  --v9e0-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --v9e0-radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }

a { color: var(--v9e0-accent); text-decoration: none; }

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

/* ---------- Header ---------- */
.v9e0-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1E1E1E 0%, #2c2722 100%);
  border-bottom: 1px solid var(--v9e0-border);
  box-shadow: var(--v9e0-shadow);
}
.v9e0-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
}
.v9e0-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--v9e0-light);
  font-weight: 700;
  font-size: 1.6rem;
}
.v9e0-brand .v9e0-logo {
  width: 3rem; height: 3rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--v9e0-primary), var(--v9e0-accent));
  display: flex; align-items: center; justify-content: center;
  color: #1E1E1E; font-weight: 800; font-size: 1.4rem;
}
.v9e0-brand .v9e0-brand-name span { color: var(--v9e0-accent); }
.v9e0-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.v9e0-menu-toggle {
  background: transparent;
  border: 1px solid var(--v9e0-border);
  color: var(--v9e0-light);
  width: 3.4rem; height: 3.4rem;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.v9e0-btn {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
}
.v9e0-btn:hover { transform: translateY(-1px); }
.v9e0-btn-primary {
  background: linear-gradient(135deg, var(--v9e0-primary), var(--v9e0-accent));
  color: #1E1E1E;
  box-shadow: 0 3px 10px rgba(255, 204, 51, 0.35);
}
.v9e0-btn-ghost {
  background: transparent;
  color: var(--v9e0-light);
  border: 1px solid var(--v9e0-secondary);
}

/* ---------- Mobile menu ---------- */
.v9e0-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: var(--v9e0-bg-soft);
  border-top: 1px solid var(--v9e0-border);
}
.v9e0-mobile-menu.v9e0-menu-open { max-height: 540px; }
.v9e0-mobile-menu ul { list-style: none; padding: 0.5rem 1rem; }
.v9e0-mobile-menu li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 0.6rem;
  color: var(--v9e0-light);
  border-bottom: 1px solid rgba(189, 183, 107, 0.12);
  font-size: 1.4rem;
}
.v9e0-mobile-menu li a i { color: var(--v9e0-accent); width: 20px; text-align: center; }

/* ---------- Hero / Carousel ---------- */
.v9e0-hero { margin-top: 6.2rem; }
.v9e0-carousel {
  position: relative;
  border-radius: var(--v9e0-radius);
  overflow: hidden;
  box-shadow: var(--v9e0-shadow);
}
.v9e0-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.v9e0-slide.v9e0-slide-active { display: block; }
.v9e0-slide img { width: 100%; height: 200px; object-fit: cover; }
.v9e0-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(30,30,30,0.92));
  padding: 1rem 1.2rem;
}
.v9e0-slide-caption h2 { color: var(--v9e0-accent); font-size: 1.7rem; margin-bottom: 0.3rem; }
.v9e0-slide-caption p { color: var(--v9e0-light); font-size: 1.25rem; }
.v9e0-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 2;
}
.v9e0-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(224,255,255,0.45);
  cursor: pointer;
}
.v9e0-dot.v9e0-dot-active { background: var(--v9e0-accent); transform: scale(1.3); }

/* ---------- Sections ---------- */
.v9e0-section { padding: 2rem 1.2rem; }
.v9e0-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.v9e0-section-head h2 {
  color: var(--v9e0-accent);
  font-size: 1.7rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.v9e0-section-head h2 i { color: var(--v9e0-primary); }
.v9e0-section-more { color: var(--v9e0-secondary); font-size: 1.2rem; }

.v9e0-h1 {
  color: var(--v9e0-light);
  font-size: 2rem;
  padding: 1.4rem 1.2rem 0.4rem;
  line-height: 1.3;
}
.v9e0-h1 span { color: var(--v9e0-accent); }
.v9e0-lead {
  color: var(--v9e0-text-muted);
  padding: 0 1.2rem 0.5rem;
  font-size: 1.35rem;
}

/* ---------- Game grid ---------- */
.v9e0-cat-title {
  color: var(--v9e0-primary);
  font-size: 1.45rem;
  margin: 1.6rem 0 0.8rem;
  padding-left: 0.4rem;
  border-left: 4px solid var(--v9e0-accent);
  padding-left: 0.8rem;
  text-transform: capitalize;
}
.v9e0-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.v9e0-game {
  background: var(--v9e0-card);
  border: 1px solid var(--v9e0-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}
.v9e0-game:hover { transform: translateY(-2px); box-shadow: var(--v9e0-shadow); }
.v9e0-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #15120f;
}
.v9e0-game-name {
  padding: 0.5rem 0.4rem;
  font-size: 1.1rem;
  color: var(--v9e0-light);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Cards ---------- */
.v9e0-card {
  background: var(--v9e0-card);
  border: 1px solid var(--v9e0-border);
  border-radius: var(--v9e0-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.v9e0-card h3 {
  color: var(--v9e0-accent);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.v9e0-card p { color: var(--v9e0-text); font-size: 1.3rem; line-height: 1.5; }

.v9e0-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.v9e0-feature {
  background: var(--v9e0-card);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--v9e0-border);
}
.v9e0-feature .v9e0-feature-icon {
  font-size: 2.2rem;
  color: var(--v9e0-accent);
  margin-bottom: 0.4rem;
}
.v9e0-feature h4 { color: var(--v9e0-light); font-size: 1.25rem; margin-bottom: 0.2rem; }
.v9e0-feature p { color: var(--v9e0-text-muted); font-size: 1.15rem; }

/* ---------- Promo CTA ---------- */
.v9e0-cta {
  background: linear-gradient(135deg, var(--v9e0-primary), var(--v9e0-accent));
  color: #1E1E1E;
  border-radius: var(--v9e0-radius);
  padding: 1.4rem;
  text-align: center;
  margin: 1.2rem 0;
  box-shadow: var(--v9e0-shadow);
}
.v9e0-cta h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.v9e0-cta p { font-size: 1.25rem; margin-bottom: 0.9rem; }
.v9e0-cta-btn {
  display: inline-block;
  background: #1E1E1E;
  color: var(--v9e0-accent);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.3rem;
  cursor: pointer;
}
.v9e0-inline-link {
  color: var(--v9e0-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

/* ---------- Testimonials ---------- */
.v9e0-testimonial {
  background: var(--v9e0-card);
  border-left: 3px solid var(--v9e0-accent);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.v9e0-testimonial p { font-size: 1.25rem; color: var(--v9e0-text); font-style: italic; }
.v9e0-testimonial .v9e0-stars { color: var(--v9e0-accent); margin-bottom: 0.3rem; }
.v9e0-testimonial cite { display: block; color: var(--v9e0-secondary); font-size: 1.15rem; margin-top: 0.4rem; }

/* ---------- Winners ---------- */
.v9e0-winners {
  background: var(--v9e0-card);
  border-radius: var(--v9e0-radius);
  padding: 1rem 1.2rem;
  border: 1px solid var(--v9e0-border);
}
.v9e0-winner-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(189,183,107,0.18);
  font-size: 1.25rem;
}
.v9e0-winner-row:last-child { border-bottom: none; }
.v9e0-winner-row .v9e0-amount { color: var(--v9e0-accent); font-weight: 700; }

/* ---------- Payment ---------- */
.v9e0-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 0.8rem 0;
}
.v9e0-pay {
  background: var(--v9e0-card);
  border: 1px solid var(--v9e0-border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 1.2rem;
  color: var(--v9e0-light);
  display: flex; align-items: center; gap: 0.4rem;
}

/* ---------- FAQ ---------- */
.v9e0-faq-item {
  background: var(--v9e0-card);
  border: 1px solid var(--v9e0-border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}
.v9e0-faq-item h4 { color: var(--v9e0-accent); font-size: 1.3rem; margin-bottom: 0.3rem; }
.v9e0-faq-item p { color: var(--v9e0-text); font-size: 1.25rem; }

/* ---------- Footer ---------- */
.v9e0-footer {
  background: var(--v9e0-bg-soft);
  border-top: 1px solid var(--v9e0-border);
  padding: 2rem 1.2rem 6.5rem;
  margin-top: 2rem;
}
.v9e0-footer h3 { color: var(--v9e0-accent); font-size: 1.4rem; margin-bottom: 0.6rem; }
.v9e0-footer p { color: var(--v9e0-text-muted); font-size: 1.2rem; margin-bottom: 1rem; }
.v9e0-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.v9e0-footer-links a {
  background: var(--v9e0-card);
  color: var(--v9e0-light);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 1.15rem;
  border: 1px solid var(--v9e0-border);
}
.v9e0-footer-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
}
.v9e0-footer-buttons .v9e0-btn { justify-content: center; width: 100%; }
.v9e0-footer-copy {
  color: var(--v9e0-text-muted);
  font-size: 1.1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--v9e0-border);
}

/* ---------- Bottom nav ---------- */
.v9e0-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, #2c2722, #1E1E1E);
  border-top: 1px solid var(--v9e0-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.5);
}
.v9e0-bottomnav-link {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--v9e0-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.v9e0-bottomnav-link i,
.v9e0-bottomnav-link .material-icons-outlined,
.v9e0-bottomnav-link ion-icon {
  font-size: 22px;
}
.v9e0-bottomnav-link span { font-size: 1rem; }
.v9e0-bottomnav-link:active { transform: scale(0.92); }
.v9e0-bottomnav-active,
.v9e0-bottomnav-link:hover { color: var(--v9e0-accent); }
.v9e0-bottomnav-link.v9e0-bottomnav-promo {
  color: var(--v9e0-accent);
}
.v9e0-bottomnav-link.v9e0-bottomnav-promo span { color: var(--v9e0-accent); font-weight: 700; }

/* ---------- Reveal animation ---------- */
[data-v9e0-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-v9e0-reveal].v9e0-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile padding ---------- */
main { padding-bottom: 80px; }

/* ---------- Desktop: hide bottom nav, widen shell ---------- */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .v9e0-bottomnav { display: none; }
  .v9e0-footer { padding-bottom: 2rem; }
  main { padding-bottom: 0; }
}
