/**
 * jiliok-vip.click - Main Stylesheet
 * Prefix: s6a9-
 * Color palette: #B8860B | #0D1117 | #FFA500 | #FFFFFF | #FFEBCD
 */

/* CSS Custom Properties */
:root {
  --s6a9-primary: #B8860B;
  --s6a9-bg: #0D1117;
  --s6a9-accent: #FFA500;
  --s6a9-text: #FFFFFF;
  --s6a9-light: #FFEBCD;
  --s6a9-dark: #0D1117;
  --s6a9-card-bg: #161B22;
  --s6a9-border: #21262D;
  --s6a9-gold: #B8860B;
  --s6a9-orange: #FFA500;
  --s6a9-radius: 12px;
  --s6a9-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --s6a9-header-h: 56px;
  --s6a9-bottom-h: 60px;
}

/* 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', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--s6a9-bg);
  color: var(--s6a9-text);
  line-height: 1.6;
  font-size: 1.6rem;
  overflow-x: hidden;
}
a { text-decoration: none; color: var(--s6a9-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============ HEADER ============ */
.s6a9-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--s6a9-header-h);
  background: linear-gradient(135deg, var(--s6a9-dark) 0%, #1a1f2e 100%);
  border-bottom: 2px solid var(--s6a9-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(184, 134, 11, 0.15);
}
.s6a9-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.s6a9-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid var(--s6a9-primary);
}
.s6a9-logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--s6a9-primary);
  letter-spacing: -0.5px;
  text-shadow: 0 0 12px rgba(184, 134, 11, 0.3);
}
.s6a9-logo-text span {
  color: var(--s6a9-accent);
}
.s6a9-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.s6a9-btn-register, .s6a9-btn-login {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.s6a9-btn-register {
  background: linear-gradient(135deg, var(--s6a9-primary), var(--s6a9-accent));
  color: var(--s6a9-dark);
  box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}
.s6a9-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 165, 0, 0.5);
}
.s6a9-btn-login {
  background: transparent;
  color: var(--s6a9-primary);
  border: 2px solid var(--s6a9-primary);
}
.s6a9-btn-login:hover {
  background: rgba(184, 134, 11, 0.1);
}
.s6a9-menu-toggle {
  color: var(--s6a9-primary);
  font-size: 2.4rem;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* ============ MOBILE MENU ============ */
.s6a9-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.s6a9-overlay-active { opacity: 1; visibility: visible; }
.s6a9-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #1a1f2e, var(--s6a9-dark));
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  border-left: 2px solid var(--s6a9-primary);
}
.s6a9-menu-active { right: 0; }
.s6a9-menu-close {
  color: var(--s6a9-primary);
  font-size: 2.8rem;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.s6a9-menu-group-title {
  color: var(--s6a9-primary);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--s6a9-border);
}
.s6a9-menu-link {
  display: block;
  color: var(--s6a9-light);
  font-size: 1.5rem;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.s6a9-menu-link:hover {
  background: rgba(184, 134, 11, 0.15);
  color: var(--s6a9-accent);
}

/* ============ MAIN CONTENT ============ */
.s6a9-main {
  margin-top: var(--s6a9-header-h);
  min-height: calc(100vh - var(--s6a9-header-h));
}
@media (max-width: 768px) {
  .s6a9-main { padding-bottom: 80px; }
}

/* ============ CAROUSEL ============ */
.s6a9-carousel {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--s6a9-shadow);
}
.s6a9-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.s6a9-carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.s6a9-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.s6a9-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.s6a9-dot-active {
  background: var(--s6a9-primary);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(184, 134, 11, 0.6);
}

/* ============ SECTION TITLES ============ */
.s6a9-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--s6a9-primary);
  text-align: center;
  margin: 28px 0 16px;
  position: relative;
  padding-bottom: 10px;
}
.s6a9-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--s6a9-primary), var(--s6a9-accent));
  border-radius: 2px;
}
.s6a9-section-subtitle {
  text-align: center;
  color: var(--s6a9-light);
  font-size: 1.4rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* ============ GAME GRID ============ */
.s6a9-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 12px;
  max-width: 430px;
  margin: 0 auto;
}
.s6a9-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-radius: 10px;
  background: var(--s6a9-card-bg);
  border: 1px solid var(--s6a9-border);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.s6a9-game-item:hover {
  transform: translateY(-2px);
  border-color: var(--s6a9-primary);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
}
.s6a9-game-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 6px;
  object-fit: cover;
  border: 1px solid var(--s6a9-border);
}
.s6a9-game-name {
  font-size: 1.1rem;
  color: var(--s6a9-light);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 2.8em;
}

/* ============ CONTENT SECTIONS ============ */
.s6a9-content-section {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 16px;
}
.s6a9-content-card {
  background: var(--s6a9-card-bg);
  border-radius: var(--s6a9-radius);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--s6a9-border);
}
.s6a9-content-card h2 {
  color: var(--s6a9-primary);
  font-size: 2rem;
  margin-bottom: 12px;
}
.s6a9-content-card h3 {
  color: var(--s6a9-accent);
  font-size: 1.7rem;
  margin: 14px 0 8px;
}
.s6a9-content-card p {
  color: var(--s6a9-light);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 10px;
  opacity: 0.9;
}
.s6a9-content-card ul {
  padding-left: 16px;
  margin-bottom: 10px;
}
.s6a9-content-card li {
  color: var(--s6a9-light);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
  opacity: 0.9;
}

/* ============ PROMO BANNER ============ */
.s6a9-promo-banner {
  background: linear-gradient(135deg, var(--s6a9-primary), var(--s6a9-accent));
  border-radius: var(--s6a9-radius);
  padding: 20px;
  text-align: center;
  margin: 20px 12px;
  max-width: 406px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}
.s6a9-promo-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 28px rgba(184, 134, 11, 0.5);
}
.s6a9-promo-banner h3 {
  color: var(--s6a9-dark);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.s6a9-promo-banner p {
  color: var(--s6a9-dark);
  font-size: 1.4rem;
  opacity: 0.85;
}

/* ============ CTA BUTTON ============ */
.s6a9-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--s6a9-primary), var(--s6a9-accent));
  color: var(--s6a9-dark);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3);
  border: none;
}
.s6a9-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 165, 0, 0.5);
}

/* ============ FOOTER ============ */
.s6a9-footer {
  background: linear-gradient(180deg, var(--s6a9-card-bg), var(--s6a9-dark));
  border-top: 2px solid var(--s6a9-primary);
  padding: 32px 16px 24px;
  margin-top: 40px;
}
.s6a9-footer-inner {
  max-width: 430px;
  margin: 0 auto;
}
.s6a9-footer-brand {
  text-align: center;
  margin-bottom: 20px;
}
.s6a9-footer-brand h3 {
  color: var(--s6a9-primary);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.s6a9-footer-brand p {
  color: var(--s6a9-light);
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.8;
}
.s6a9-footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0;
}
.s6a9-footer-partner-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--s6a9-border);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.s6a9-footer-partner-img:hover { opacity: 1; }
.s6a9-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 16px 0;
}
.s6a9-footer-link {
  color: var(--s6a9-light);
  font-size: 1.3rem;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.s6a9-footer-link:hover {
  color: var(--s6a9-accent);
  opacity: 1;
}
.s6a9-footer-affiliate-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}
.s6a9-aff-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--s6a9-primary), var(--s6a9-accent));
  color: var(--s6a9-dark);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.s6a9-aff-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(255, 165, 0, 0.4);
}
.s6a9-footer-copy {
  text-align: center;
  color: var(--s6a9-light);
  font-size: 1.2rem;
  opacity: 0.5;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--s6a9-border);
}

/* ============ BOTTOM NAVIGATION ============ */
.s6a9-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--s6a9-bottom-h);
  background: linear-gradient(180deg, #1a1f2e, var(--s6a9-dark));
  border-top: 2px solid var(--s6a9-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 16px rgba(184, 134, 11, 0.15);
}
.s6a9-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 54px;
  color: var(--s6a9-light);
  opacity: 0.6;
  transition: all 0.3s ease;
  border: none;
  background: none;
  cursor: pointer;
  gap: 2px;
}
.s6a9-bottom-nav-btn:hover,
.s6a9-nav-active {
  opacity: 1;
  color: var(--s6a9-accent);
  transform: scale(1.05);
}
.s6a9-bottom-nav-btn .s6a9-nav-icon {
  font-size: 2.4rem;
  line-height: 1;
}
.s6a9-bottom-nav-btn .s6a9-nav-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
@media (min-width: 769px) {
  .s6a9-bottom-nav { display: none; }
}

/* ============ BREADCRUMB ============ */
.s6a9-breadcrumb {
  max-width: 430px;
  margin: 12px auto;
  padding: 0 16px;
  font-size: 1.2rem;
  color: var(--s6a9-light);
  opacity: 0.6;
}
.s6a9-breadcrumb a {
  color: var(--s6a9-accent);
  opacity: 0.7;
}
.s6a9-breadcrumb span { margin: 0 4px; }

/* ============ HELP PAGE STYLES ============ */
.s6a9-help-section {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 16px;
}
.s6a9-help-card {
  background: var(--s6a9-card-bg);
  border: 1px solid var(--s6a9-border);
  border-radius: var(--s6a9-radius);
  padding: 20px;
  margin-bottom: 16px;
}
.s6a9-help-card h2 {
  color: var(--s6a9-primary);
  font-size: 1.9rem;
  margin-bottom: 12px;
}
.s6a9-help-card h3 {
  color: var(--s6a9-accent);
  font-size: 1.6rem;
  margin: 14px 0 8px;
}
.s6a9-help-card p {
  color: var(--s6a9-light);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 8px;
  opacity: 0.9;
}
.s6a9-faq-item {
  background: var(--s6a9-card-bg);
  border: 1px solid var(--s6a9-border);
  border-radius: var(--s6a9-radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.s6a9-faq-q {
  padding: 16px 20px;
  color: var(--s6a9-primary);
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s6a9-faq-a {
  padding: 0 20px 16px;
  color: var(--s6a9-light);
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ============ DESKTOP ADJUSTMENTS ============ */
@media (min-width: 769px) {
  .s6a9-game-grid { grid-template-columns: repeat(6, 1fr); max-width: 768px; }
  .s6a9-content-section, .s6a9-help-section { max-width: 768px; }
  .s6a9-footer-inner { max-width: 768px; }
  .s6a9-carousel { max-width: 768px; border-radius: 0 0 16px 16px; }
  .s6a9-promo-banner { max-width: 500px; }
}

/* ============ SCROLL TO TOP ============ */
.s6a9-scroll-top {
  position: fixed;
  bottom: 76px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--s6a9-primary);
  color: var(--s6a9-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.s6a9-scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.6);
}
@media (min-width: 769px) {
  .s6a9-scroll-top { bottom: 16px; }
}
