/**
 * Orion Game - Main Stylesheet
 * Prefix: wc6a2-
 * Color palette: #FFCC02 (gold) | #E5E5E5 (light gray) | #1B263B (dark navy)
 */
:root {
  --wc6a2-primary: #FFCC02;
  --wc6a2-primary-dark: #E0B800;
  --wc6a2-primary-light: #FFE44D;
  --wc6a2-bg: #1B263B;
  --wc6a2-bg-dark: #0F1729;
  --wc6a2-bg-card: #243352;
  --wc6a2-bg-card-hover: #2C3D5E;
  --wc6a2-text: #E5E5E5;
  --wc6a2-text-muted: #9EAFC0;
  --wc6a2-text-dark: #1B263B;
  --wc6a2-border: #2E4263;
  --wc6a2-success: #4ADE80;
  --wc6a2-danger: #F87171;
  --wc6a2-radius: 8px;
  --wc6a2-radius-lg: 12px;
  --wc6a2-shadow: 0 2px 12px rgba(0,0,0,0.3);
  --wc6a2-header-h: 56px;
  --wc6a2-bnav-h: 60px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--wc6a2-bg);
  color: var(--wc6a2-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--wc6a2-primary); text-decoration: none; }
a:hover { color: var(--wc6a2-primary-light); }
img { max-width: 100%; height: auto; display: block; }

/* ====== HEADER ====== */
.wc6a2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--wc6a2-bg-dark);
  border-bottom: 1px solid var(--wc6a2-border);
  height: var(--wc6a2-header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem;
  max-width: 430px; margin: 0 auto;
}
.wc6a2-logo { display: flex; align-items: center; gap: 0.6rem; }
.wc6a2-logo img { width: 28px; height: 28px; border-radius: 4px; }
.wc6a2-logo-text { color: var(--wc6a2-primary); font-size: 1.6rem; font-weight: 700; }
.wc6a2-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.wc6a2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem; border-radius: var(--wc6a2-radius);
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s ease; min-height: 36px;
}
.wc6a2-btn-primary { background: var(--wc6a2-primary); color: var(--wc6a2-text-dark); }
.wc6a2-btn-primary:hover { background: var(--wc6a2-primary-dark); transform: scale(1.03); }
.wc6a2-btn-outline {
  background: transparent; color: var(--wc6a2-primary);
  border: 1.5px solid var(--wc6a2-primary);
}
.wc6a2-btn-outline:hover { background: rgba(255,204,2,0.1); }
.wc6a2-menu-btn {
  background: none; border: none; color: var(--wc6a2-text);
  font-size: 2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center; justify-content: center;
}

/* ====== MOBILE MENU ====== */
.wc6a2-mobile-menu {
  display: none; position: fixed; top: var(--wc6a2-header-h); left: 0; right: 0;
  background: var(--wc6a2-bg-dark); z-index: 9999;
  border-bottom: 2px solid var(--wc6a2-primary);
  max-width: 430px; margin: 0 auto;
}
.wc6a2-menu-active { display: block; }
.wc6a2-mobile-menu a {
  display: block; padding: 1.2rem 1.6rem; color: var(--wc6a2-text);
  border-bottom: 1px solid var(--wc6a2-border); font-size: 1.4rem;
  transition: background 0.2s;
}
.wc6a2-mobile-menu a:hover { background: var(--wc6a2-bg-card); color: var(--wc6a2-primary); }

/* ====== MAIN CONTENT ====== */
.wc6a2-main { padding-top: var(--wc6a2-header-h); }
@media (max-width: 768px) {
  .wc6a2-main { padding-bottom: calc(var(--wc6a2-bnav-h) + 20px); }
}

/* ====== CAROUSEL ====== */
.wc6a2-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 0 0 var(--wc6a2-radius-lg) var(--wc6a2-radius-lg);
}
.wc6a2-slide {
  display: none; width: 100%; aspect-ratio: 16/7; cursor: pointer;
}
.wc6a2-slide-active { display: block; }
.wc6a2-slide img { width: 100%; height: 100%; object-fit: cover; }
.wc6a2-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.wc6a2-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.3s;
}
.wc6a2-dot-active { background: var(--wc6a2-primary); }

/* ====== SECTION ====== */
.wc6a2-section {
  padding: 2rem 1.2rem;
}
.wc6a2-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--wc6a2-primary);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wc6a2-primary);
}
.wc6a2-section-subtitle {
  font-size: 1.5rem; font-weight: 600; color: var(--wc6a2-text);
  margin-bottom: 0.8rem;
}

/* ====== GAME GRID ====== */
.wc6a2-cat-title {
  font-size: 1.5rem; font-weight: 700; color: var(--wc6a2-primary);
  margin: 1.6rem 0 0.8rem; display: flex; align-items: center; gap: 0.6rem;
}
.wc6a2-cat-title i, .wc6a2-cat-title .material-icons { font-size: 1.8rem; }
.wc6a2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.wc6a2-game-item {
  text-align: center; cursor: pointer; transition: transform 0.2s;
  border-radius: var(--wc6a2-radius); padding: 0.4rem;
}
.wc6a2-game-item:hover { transform: scale(1.05); }
.wc6a2-game-item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--wc6a2-radius); border: 2px solid var(--wc6a2-border);
  margin-bottom: 0.3rem;
}
.wc6a2-game-item span {
  font-size: 1.1rem; color: var(--wc6a2-text-muted);
  display: block; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}

/* ====== CONTENT CARDS ====== */
.wc6a2-card {
  background: var(--wc6a2-bg-card); border-radius: var(--wc6a2-radius-lg);
  padding: 1.6rem; margin-bottom: 1.2rem; border: 1px solid var(--wc6a2-border);
}
.wc6a2-card-title {
  font-size: 1.5rem; font-weight: 700; color: var(--wc6a2-primary);
  margin-bottom: 0.8rem;
}
.wc6a2-card p {
  font-size: 1.3rem; line-height: 1.6; color: var(--wc6a2-text-muted);
  margin-bottom: 0.8rem;
}

/* ====== CTA / PROMO ====== */
.wc6a2-cta {
  background: linear-gradient(135deg, var(--wc6a2-primary) 0%, var(--wc6a2-primary-dark) 100%);
  color: var(--wc6a2-text-dark); text-align: center; padding: 2rem 1.2rem;
  border-radius: var(--wc6a2-radius-lg); margin: 1.6rem 0;
}
.wc6a2-cta h3 { font-size: 1.8rem; margin-bottom: 0.6rem; }
.wc6a2-cta p { font-size: 1.3rem; margin-bottom: 1rem; }
.wc6a2-cta .wc6a2-btn {
  background: var(--wc6a2-bg-dark); color: var(--wc6a2-primary);
  font-size: 1.4rem; padding: 0.8rem 2rem;
}

/* ====== TESTIMONIALS ====== */
.wc6a2-testimonial {
  background: var(--wc6a2-bg-card); border-radius: var(--wc6a2-radius-lg);
  padding: 1.2rem; margin-bottom: 1rem; border-left: 3px solid var(--wc6a2-primary);
}
.wc6a2-testimonial-text { font-size: 1.2rem; font-style: italic; color: var(--wc6a2-text-muted); margin-bottom: 0.5rem; }
.wc6a2-testimonial-author { font-size: 1.1rem; color: var(--wc6a2-primary); font-weight: 600; }

/* ====== PAYMENT METHODS ====== */
.wc6a2-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.wc6a2-payment-item {
  background: var(--wc6a2-bg-card); border-radius: var(--wc6a2-radius);
  padding: 0.8rem 1.2rem; font-size: 1.2rem; color: var(--wc6a2-text);
  border: 1px solid var(--wc6a2-border);
}

/* ====== WINNERS ====== */
.wc6a2-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--wc6a2-border);
  font-size: 1.2rem;
}
.wc6a2-winner-name { color: var(--wc6a2-text); }
.wc6a2-winner-game { color: var(--wc6a2-text-muted); flex: 1; margin: 0 0.8rem; }
.wc6a2-winner-amount { color: var(--wc6a2-primary); font-weight: 700; }

/* ====== FAQ ====== */
.wc6a2-faq-item { margin-bottom: 1rem; }
.wc6a2-faq-q {
  font-size: 1.3rem; font-weight: 600; color: var(--wc6a2-primary);
  margin-bottom: 0.4rem;
}
.wc6a2-faq-a { font-size: 1.2rem; color: var(--wc6a2-text-muted); line-height: 1.5; }

/* ====== FOOTER ====== */
.wc6a2-footer {
  background: var(--wc6a2-bg-dark); border-top: 1px solid var(--wc6a2-border);
  padding: 2rem 1.2rem 1rem; text-align: center;
}
.wc6a2-footer-brand { font-size: 1.3rem; color: var(--wc6a2-text-muted); margin-bottom: 1rem; line-height: 1.5; }
.wc6a2-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1rem;
}
.wc6a2-footer-links a {
  font-size: 1.1rem; color: var(--wc6a2-text-muted); padding: 0.3rem 0.6rem;
  transition: color 0.2s;
}
.wc6a2-footer-links a:hover { color: var(--wc6a2-primary); }
.wc6a2-footer-copy { font-size: 1.1rem; color: var(--wc6a2-text-muted); margin-top: 0.8rem; }

/* ====== BOTTOM NAV ====== */
.wc6a2-bnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--wc6a2-bg-dark); border-top: 1px solid var(--wc6a2-border);
  height: var(--wc6a2-bnav-h);
  display: flex; justify-content: space-around; align-items: center;
  max-width: 430px; margin: 0 auto;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}
.wc6a2-bnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 50px; cursor: pointer; border: none;
  background: none; color: var(--wc6a2-text-muted); transition: all 0.2s ease;
  padding: 0.3rem;
}
.wc6a2-bnav-btn i,
.wc6a2-bnav-btn .material-icons,
.wc6a2-bnav-btn ion-icon,
.wc6a2-bnav-btn bi {
  font-size: 2.2rem; margin-bottom: 0.1rem;
}
.wc6a2-bnav-btn span { font-size: 1rem; }
.wc6a2-bnav-btn:hover,
.wc6a2-bnav-active {
  color: var(--wc6a2-primary); transform: scale(1.08);
}
.wc6a2-bnav-active { text-shadow: 0 0 8px rgba(255,204,2,0.5); }
@media (min-width: 769px) {
  .wc6a2-bnav { display: none; }
  .wc6a2-main { padding-bottom: 0; }
}

/* ====== UTILITY ====== */
.wc6a2-container { padding: 0 1.2rem; }
.wc6a2-text-gold { color: var(--wc6a2-primary); }
.wc6a2-text-muted { color: var(--wc6a2-text-muted); }
.wc6a2-mb-1 { margin-bottom: 0.8rem; }
.wc6a2-mb-2 { margin-bottom: 1.6rem; }
.wc6a2-mt-1 { margin-top: 0.8rem; }
.wc6a2-text-center { text-align: center; }
.wc6a2-promo-link {
  color: var(--wc6a2-primary); font-weight: 700; cursor: pointer;
  text-decoration: underline; transition: color 0.2s;
}
.wc6a2-promo-link:hover { color: var(--wc6a2-primary-light); }

/* ====== DESKTOP NAV ====== */
.wc6a2-desktop-nav { display: none; }
@media (min-width: 769px) {
  .wc6a2-desktop-nav {
    display: flex; gap: 1.2rem; align-items: center;
  }
  .wc6a2-desktop-nav a {
    color: var(--wc6a2-text-muted); font-size: 1.2rem; transition: color 0.2s;
  }
  .wc6a2-desktop-nav a:hover { color: var(--wc6a2-primary); }
  .wc6a2-menu-btn { display: none; }
}

/* ====== RATING STARS ====== */
.wc6a2-stars { color: var(--wc6a2-primary); font-size: 1.2rem; }

/* ====== FEATURE HIGHLIGHTS ====== */
.wc6a2-feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.wc6a2-feature-item {
  background: var(--wc6a2-bg-card); border-radius: var(--wc6a2-radius);
  padding: 1rem; text-align: center; border: 1px solid var(--wc6a2-border);
}
.wc6a2-feature-item i,
.wc6a2-feature-item .material-icons {
  font-size: 2rem; color: var(--wc6a2-primary); margin-bottom: 0.4rem;
}
.wc6a2-feature-item p { font-size: 1.1rem; color: var(--wc6a2-text-muted); }

/* ====== APP DOWNLOAD ====== */
.wc6a2-app-dl {
  background: linear-gradient(135deg, var(--wc6a2-bg-card) 0%, var(--wc6a2-bg-dark) 100%);
  border: 1px solid var(--wc6a2-primary); border-radius: var(--wc6a2-radius-lg);
  padding: 1.6rem; text-align: center; margin: 1.2rem 0;
}
.wc6a2-app-dl h3 { font-size: 1.5rem; color: var(--wc6a2-primary); margin-bottom: 0.6rem; }
.wc6a2-app-dl p { font-size: 1.2rem; color: var(--wc6a2-text-muted); margin-bottom: 1rem; }

/* ====== HELP PAGE CONTENT ====== */
.wc6a2-help-content { padding: 1.6rem 1.2rem; }
.wc6a2-help-content h2 {
  font-size: 1.6rem; color: var(--wc6a2-primary); margin-bottom: 0.8rem;
  padding-bottom: 0.4rem; border-bottom: 1px solid var(--wc6a2-border);
}
.wc6a2-help-content h3 {
  font-size: 1.4rem; color: var(--wc6a2-text); margin: 1rem 0 0.5rem;
}
.wc6a2-help-content p {
  font-size: 1.3rem; color: var(--wc6a2-text-muted); line-height: 1.6; margin-bottom: 0.8rem;
}
.wc6a2-help-content ul {
  list-style: none; padding: 0; margin-bottom: 0.8rem;
}
.wc6a2-help-content ul li {
  font-size: 1.3rem; color: var(--wc6a2-text-muted); padding: 0.3rem 0;
  padding-left: 1.4rem; position: relative;
}
.wc6a2-help-content ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--wc6a2-primary); font-size: 1rem;
}
