/**
 * jilino1.click - Main Stylesheet
 * All classes use prefix: v9f3-
 * Color palette: #FAFAFA | #2C3E50 | #A0522D
 */

/* CSS Variables */
:root {
  --v9f3-primary: #A0522D;
  --v9f3-primary-light: #C4764A;
  --v9f3-primary-dark: #7A3F22;
  --v9f3-bg-dark: #2C3E50;
  --v9f3-bg-darker: #1E2D3D;
  --v9f3-bg-light: #FAFAFA;
  --v9f3-text-light: #FAFAFA;
  --v9f3-text-dark: #2C3E50;
  --v9f3-text-muted: #95A5A6;
  --v9f3-accent: #E67E22;
  --v9f3-accent-gold: #D4A017;
  --v9f3-border: #3D5266;
  --v9f3-card-bg: #34495E;
  --v9f3-success: #27AE60;
  --v9f3-radius: 8px;
  --v9f3-radius-lg: 14px;
  --v9f3-shadow: 0 4px 16px rgba(0,0,0,0.3);
  --v9f3-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--v9f3-bg-dark);
  color: var(--v9f3-text-light);
  line-height: 1.6;
  font-size: 1.5rem;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.v9f3-container { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v9f3-wrapper { max-width: 430px; margin: 0 auto; }

/* ========== HEADER ========== */
.v9f3-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--v9f3-bg-darker);
  border-bottom: 2px solid var(--v9f3-primary);
  transition: var(--v9f3-transition);
  height: 56px;
}
.v9f3-header-scrolled {
  background: rgba(30,45,61,0.96);
  box-shadow: 0 2px 12px rgba(160,82,45,0.25);
}
.v9f3-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 430px; margin: 0 auto; padding: 0 1rem; height: 56px;
}
.v9f3-logo-area {
  display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
}
.v9f3-logo-area img { width: 28px; height: 28px; border-radius: 4px; }
.v9f3-logo-text {
  font-size: 1.6rem; font-weight: 700; color: var(--v9f3-accent-gold);
  letter-spacing: 0.5px;
}
.v9f3-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.v9f3-btn-register {
  background: linear-gradient(135deg, var(--v9f3-primary), var(--v9f3-accent));
  color: #fff; border: none; padding: 0.6rem 1.2rem; border-radius: var(--v9f3-radius);
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  transition: var(--v9f3-transition);
}
.v9f3-btn-register:hover { transform: scale(1.05); box-shadow: 0 2px 10px rgba(160,82,45,0.5); }
.v9f3-btn-login {
  background: transparent; color: var(--v9f3-accent-gold); border: 1.5px solid var(--v9f3-accent-gold);
  padding: 0.5rem 1rem; border-radius: var(--v9f3-radius);
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  transition: var(--v9f3-transition);
}
.v9f3-btn-login:hover { background: rgba(212,160,23,0.15); }
.v9f3-menu-toggle {
  background: none; border: none; color: var(--v9f3-text-light);
  font-size: 2rem; cursor: pointer; padding: 0.4rem; display: flex;
  align-items: center; justify-content: center;
}

/* ========== MOBILE MENU ========== */
.v9f3-menu-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 9998;
  opacity: 0; visibility: hidden; transition: var(--v9f3-transition);
}
.v9f3-overlay-active { opacity: 1; visibility: visible; }
.v9f3-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--v9f3-bg-darker); z-index: 9999;
  transition: right 0.35s ease; overflow-y: auto;
  border-left: 2px solid var(--v9f3-primary);
}
.v9f3-menu-active { right: 0; }
.v9f3-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.2rem; border-bottom: 1px solid var(--v9f3-border);
}
.v9f3-menu-header h3 { font-size: 1.6rem; color: var(--v9f3-accent-gold); }
.v9f3-menu-close {
  background: none; border: none; color: var(--v9f3-text-light);
  font-size: 2rem; cursor: pointer;
}
.v9f3-menu-links { padding: 1rem 0; }
.v9f3-menu-links a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.6rem; color: var(--v9f3-text-light);
  font-size: 1.4rem; transition: var(--v9f3-transition);
  border-left: 3px solid transparent;
}
.v9f3-menu-links a:hover, .v9f3-menu-links a:focus {
  background: rgba(160,82,45,0.15); border-left-color: var(--v9f3-primary);
  color: var(--v9f3-accent-gold);
}
.v9f3-menu-links a i, .v9f3-menu-links a .material-icons {
  font-size: 1.8rem; color: var(--v9f3-primary-light);
}

/* ========== CAROUSEL ========== */
.v9f3-carousel {
  position: relative; margin-top: 56px; overflow: hidden;
  border-radius: 0 0 var(--v9f3-radius-lg) var(--v9f3-radius-lg);
}
.v9f3-slides-container { position: relative; width: 100%; }
.v9f3-slide {
  display: none; width: 100%; cursor: pointer;
  border-radius: 0 0 var(--v9f3-radius-lg) var(--v9f3-radius-lg);
}
.v9f3-slide-active { display: block; }
.v9f3-slide img {
  width: 100%; height: auto; min-height: 180px; object-fit: cover;
  border-radius: 0 0 var(--v9f3-radius-lg) var(--v9f3-radius-lg);
}
.v9f3-carousel-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 6px; z-index: 5;
}
.v9f3-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--v9f3-transition);
}
.v9f3-dot-active { background: var(--v9f3-accent-gold); transform: scale(1.3); }

/* ========== MAIN CONTENT ========== */
.v9f3-main { padding-top: 56px; padding-bottom: 2rem; }
@media (max-width: 768px) {
  .v9f3-main { padding-bottom: 80px; }
}

/* ========== SECTION TITLES ========== */
.v9f3-section-title {
  font-size: 2rem; font-weight: 700; color: var(--v9f3-accent-gold);
  text-align: center; margin: 2.5rem 0 1.5rem; position: relative;
  padding-bottom: 0.8rem;
}
.v9f3-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--v9f3-primary), var(--v9f3-accent));
  border-radius: 2px;
}
.v9f3-subtitle {
  font-size: 1.6rem; color: var(--v9f3-text-muted); text-align: center;
  margin-bottom: 1.5rem;
}

/* ========== GAME GRID ========== */
.v9f3-game-section { padding: 1rem 0; }
.v9f3-cat-title {
  font-size: 1.6rem; font-weight: 700; color: var(--v9f3-primary-light);
  margin: 1.8rem 0 1rem; padding-left: 0.5rem;
  border-left: 3px solid var(--v9f3-primary);
}
.v9f3-game-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem; padding: 0.5rem 0;
}
.v9f3-game-item {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: var(--v9f3-transition);
  border-radius: var(--v9f3-radius); padding: 0.4rem;
}
.v9f3-game-item:hover { transform: translateY(-3px); background: rgba(160,82,45,0.15); }
.v9f3-game-item img {
  width: 56px; height: 56px; border-radius: var(--v9f3-radius);
  object-fit: cover; border: 2px solid var(--v9f3-border);
  transition: var(--v9f3-transition);
}
.v9f3-game-item:hover img { border-color: var(--v9f3-accent-gold); }
.v9f3-game-name {
  font-size: 1rem; color: var(--v9f3-text-light); text-align: center;
  margin-top: 0.3rem; line-height: 1.3; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; max-width: 68px;
}

/* ========== CONTENT CARDS ========== */
.v9f3-card {
  background: var(--v9f3-card-bg); border-radius: var(--v9f3-radius-lg);
  padding: 2rem; margin: 1.5rem 0; box-shadow: var(--v9f3-shadow);
  border: 1px solid var(--v9f3-border);
}
.v9f3-card h2 {
  font-size: 1.8rem; color: var(--v9f3-accent-gold); margin-bottom: 1rem;
  font-weight: 700;
}
.v9f3-card h3 {
  font-size: 1.5rem; color: var(--v9f3-primary-light); margin: 1.2rem 0 0.6rem;
  font-weight: 600;
}
.v9f3-card p {
  font-size: 1.4rem; line-height: 1.7; color: var(--v9f3-text-light);
  margin-bottom: 0.8rem;
}
.v9f3-card ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
.v9f3-card li {
  font-size: 1.4rem; line-height: 1.7; color: var(--v9f3-text-light);
  margin-bottom: 0.4rem; list-style: disc;
}

/* ========== PROMO BUTTONS ========== */
.v9f3-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--v9f3-primary), var(--v9f3-accent));
  color: #fff; padding: 1rem 2.4rem; border-radius: var(--v9f3-radius);
  font-size: 1.5rem; font-weight: 700; cursor: pointer; border: none;
  transition: var(--v9f3-transition); text-align: center;
  box-shadow: 0 3px 12px rgba(160,82,45,0.4);
}
.v9f3-promo-btn:hover { transform: scale(1.05); box-shadow: 0 4px 18px rgba(160,82,45,0.6); }
.v9f3-promo-text {
  color: var(--v9f3-accent-gold); font-weight: 600; cursor: pointer;
  transition: var(--v9f3-transition);
}
.v9f3-promo-text:hover { color: var(--v9f3-accent); text-decoration: underline; }

/* ========== FEATURES GRID ========== */
.v9f3-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; padding: 0.5rem 0;
}
.v9f3-feature-item {
  background: var(--v9f3-card-bg); border-radius: var(--v9f3-radius);
  padding: 1.4rem; text-align: center; border: 1px solid var(--v9f3-border);
  transition: var(--v9f3-transition);
}
.v9f3-feature-item:hover { border-color: var(--v9f3-primary); transform: translateY(-2px); }
.v9f3-feature-item i, .v9f3-feature-item .material-icons {
  font-size: 2.4rem; color: var(--v9f3-accent-gold); margin-bottom: 0.6rem;
}
.v9f3-feature-item h3 {
  font-size: 1.3rem; color: var(--v9f3-text-light); font-weight: 600;
}
.v9f3-feature-item p {
  font-size: 1.1rem; color: var(--v9f3-text-muted); margin-top: 0.4rem;
}

/* ========== TESTIMONIALS ========== */
.v9f3-testimonial {
  background: var(--v9f3-card-bg); border-radius: var(--v9f3-radius);
  padding: 1.4rem; margin: 0.8rem 0;
  border-left: 3px solid var(--v9f3-primary);
}
.v9f3-testimonial-text {
  font-size: 1.3rem; font-style: italic; color: var(--v9f3-text-light);
  margin-bottom: 0.6rem; line-height: 1.6;
}
.v9f3-testimonial-author {
  font-size: 1.1rem; color: var(--v9f3-accent-gold); font-weight: 600;
}

/* ========== WINNERS TICKER ========== */
.v9f3-winners-list {
  background: var(--v9f3-card-bg); border-radius: var(--v9f3-radius-lg);
  padding: 1.2rem; border: 1px solid var(--v9f3-border);
}
.v9f3-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(61,82,102,0.3);
  font-size: 1.2rem;
}
.v9f3-winner-row:last-child { border-bottom: none; }
.v9f3-winner-name { color: var(--v9f3-text-light); }
.v9f3-winner-game { color: var(--v9f3-primary-light); }
.v9f3-winner-amount { color: var(--v9f3-accent-gold); font-weight: 700; }

/* ========== PAYMENT METHODS ========== */
.v9f3-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center; padding: 1rem 0;
}
.v9f3-payment-item {
  background: var(--v9f3-card-bg); border-radius: var(--v9f3-radius);
  padding: 0.8rem 1.4rem; font-size: 1.2rem;
  border: 1px solid var(--v9f3-border); color: var(--v9f3-text-light);
  display: flex; align-items: center; gap: 0.5rem;
}
.v9f3-payment-item i { color: var(--v9f3-accent-gold); }

/* ========== FOOTER ========== */
.v9f3-footer {
  background: var(--v9f3-bg-darker); padding: 2rem 1.2rem 6rem;
  border-top: 2px solid var(--v9f3-primary);
}
.v9f3-footer-brand {
  font-size: 1.4rem; color: var(--v9f3-text-muted); text-align: center;
  line-height: 1.6; margin-bottom: 1.5rem;
}
.v9f3-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.v9f3-footer-link {
  background: linear-gradient(135deg, var(--v9f3-primary), var(--v9f3-primary-dark));
  color: #fff; padding: 0.5rem 1rem; border-radius: var(--v9f3-radius);
  font-size: 1.1rem; font-weight: 600; cursor: pointer;
  transition: var(--v9f3-transition);
}
.v9f3-footer-link:hover { transform: scale(1.05); }
.v9f3-footer-site-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.v9f3-footer-site-links a {
  font-size: 1.2rem; color: var(--v9f3-primary-light);
  transition: var(--v9f3-transition);
}
.v9f3-footer-site-links a:hover { color: var(--v9f3-accent-gold); }
.v9f3-copyright {
  text-align: center; font-size: 1.1rem; color: var(--v9f3-text-muted);
  padding-top: 1rem; border-top: 1px solid var(--v9f3-border);
}

/* ========== BOTTOM NAVIGATION ========== */
.v9f3-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--v9f3-bg-darker);
  border-top: 2px solid var(--v9f3-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; padding: 0 0.3rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}
.v9f3-bottom-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 54px; background: none; border: none;
  color: var(--v9f3-text-muted); cursor: pointer;
  transition: var(--v9f3-transition); border-radius: var(--v9f3-radius);
  padding: 0.3rem;
}
.v9f3-bottom-btn i,
.v9f3-bottom-btn .material-icons,
.v9f3-bottom-btn ion-icon {
  font-size: 2.2rem; transition: var(--v9f3-transition);
}
.v9f3-bottom-btn span {
  font-size: 1rem; margin-top: 0.2rem; font-weight: 500;
}
.v9f3-bottom-btn:hover, .v9f3-bottom-btn:focus {
  color: var(--v9f3-accent-gold); background: rgba(160,82,45,0.15);
}
.v9f3-bottom-btn:hover i,
.v9f3-bottom-btn:hover .material-icons,
.v9f3-bottom-btn:hover ion-icon {
  transform: scale(1.15); color: var(--v9f3-accent-gold);
}
.v9f3-bottom-btn-active {
  color: var(--v9f3-accent-gold);
}
.v9f3-bottom-btn-active i,
.v9f3-bottom-btn-active .material-icons,
.v9f3-bottom-btn-active ion-icon {
  color: var(--v9f3-accent-gold);
}

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

/* ========== RESPONSIVE HELPERS ========== */
.v9f3-text-center { text-align: center; }
.v9f3-mt-1 { margin-top: 1rem; }
.v9f3-mt-2 { margin-top: 2rem; }
.v9f3-mb-1 { margin-bottom: 1rem; }
.v9f3-mb-2 { margin-bottom: 2rem; }
.v9f3-p-1 { padding: 1rem; }
.v9f3-p-2 { padding: 2rem; }

/* Highlight box */
.v9f3-highlight-box {
  background: linear-gradient(135deg, rgba(160,82,45,0.2), rgba(230,126,34,0.1));
  border: 1px solid var(--v9f3-primary);
  border-radius: var(--v9f3-radius-lg);
  padding: 1.6rem; margin: 1.5rem 0; text-align: center;
}
.v9f3-highlight-box h3 {
  font-size: 1.6rem; color: var(--v9f3-accent-gold); margin-bottom: 0.6rem;
}
.v9f3-highlight-box p {
  font-size: 1.3rem; color: var(--v9f3-text-light); line-height: 1.6;
}

/* FAQ styles */
.v9f3-faq-item {
  background: var(--v9f3-card-bg); border-radius: var(--v9f3-radius);
  padding: 1.4rem; margin: 0.8rem 0;
  border: 1px solid var(--v9f3-border);
}
.v9f3-faq-item h3 {
  font-size: 1.4rem; color: var(--v9f3-accent-gold); margin-bottom: 0.6rem;
}
.v9f3-faq-item p {
  font-size: 1.3rem; color: var(--v9f3-text-light); line-height: 1.6;
}

/* App download section */
.v9f3-app-section {
  background: linear-gradient(135deg, var(--v9f3-bg-darker), var(--v9f3-card-bg));
  border-radius: var(--v9f3-radius-lg); padding: 2rem;
  text-align: center; margin: 1.5rem 0;
  border: 1px solid var(--v9f3-primary);
}
.v9f3-app-section h2 {
  font-size: 1.8rem; color: var(--v9f3-accent-gold); margin-bottom: 1rem;
}
.v9f3-app-section p {
  font-size: 1.3rem; color: var(--v9f3-text-light); margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* CTA Section */
.v9f3-cta-section {
  background: linear-gradient(135deg, var(--v9f3-primary-dark), var(--v9f3-primary));
  border-radius: var(--v9f3-radius-lg); padding: 2rem;
  text-align: center; margin: 1.5rem 0;
}
.v9f3-cta-section h2 {
  font-size: 1.8rem; color: #fff; margin-bottom: 0.8rem;
}
.v9f3-cta-section p {
  font-size: 1.3rem; color: rgba(255,255,255,0.85); margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Image promo grid */
.v9f3-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.v9f3-img-grid img {
  border-radius: var(--v9f3-radius); cursor: pointer;
  transition: var(--v9f3-transition); width: 100%;
}
.v9f3-img-grid img:hover { transform: scale(1.03); }
