/**
 * ldplayer 9 - Theme Stylesheet
 * File: css/theme-6cf0.css
 * Prefix: w6cf0-
 * Colors: #273746 (dark bg) | #F8F8FF (light text) | #FFA500 (accent) | #FAFAD2 (highlight)
 */

:root {
  --w6cf0-dark: #273746;
  --w6cf0-dark-light: #2f444f;
  --w6cf0-dark-lighter: #3a5563;
  --w6cf0-light: #F8F8FF;
  --w6cf0-accent: #FFA500;
  --w6cf0-accent-hover: #ff8c00;
  --w6cf0-highlight: #FAFAD2;
  --w6cf0-success: #2ecc71;
  --w6cf0-danger: #e74c3c;
  --w6cf0-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --w6cf0-radius: 8px;
  --w6cf0-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: var(--w6cf0-font);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--w6cf0-light);
  background: var(--w6cf0-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--w6cf0-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--w6cf0-highlight); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
.w6cf0-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--w6cf0-dark) 0%, var(--w6cf0-dark-light) 100%);
  border-bottom: 2px solid var(--w6cf0-accent);
  padding: 0 1.2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w6cf0-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.w6cf0-logo img { width: 28px; height: 28px; border-radius: 4px; }
.w6cf0-logo span { color: var(--w6cf0-light); font-size: 1.6rem; font-weight: 700; letter-spacing: .3px; }
.w6cf0-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.w6cf0-btn-register {
  background: var(--w6cf0-accent);
  color: var(--w6cf0-dark);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--w6cf0-radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.w6cf0-btn-register:hover { background: var(--w6cf0-accent-hover); transform: scale(1.03); }
.w6cf0-btn-login {
  background: transparent;
  color: var(--w6cf0-accent);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--w6cf0-accent);
  border-radius: var(--w6cf0-radius);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.w6cf0-btn-login:hover { background: var(--w6cf0-accent); color: var(--w6cf0-dark); }
.w6cf0-menu-toggle {
  background: none;
  border: none;
  color: var(--w6cf0-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ===== MOBILE MENU ===== */
.w6cf0-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--w6cf0-dark);
  z-index: 9999;
  transition: right .3s ease;
  padding: 2rem 1.6rem;
  border-left: 2px solid var(--w6cf0-accent);
}
.w6cf0-mobile-menu.w6cf0-menu-active { right: 0; }
.w6cf0-mobile-menu h3 { color: var(--w6cf0-accent); font-size: 1.8rem; margin-bottom: 2rem; }
.w6cf0-mobile-menu ul li { margin-bottom: 0.8rem; }
.w6cf0-mobile-menu ul li a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--w6cf0-light);
  font-size: 1.4rem;
  border-radius: 6px;
  transition: background .2s;
}
.w6cf0-mobile-menu ul li a:hover { background: var(--w6cf0-dark-lighter); color: var(--w6cf0-accent); }
.w6cf0-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
}
.w6cf0-menu-overlay.w6cf0-overlay-active { display: block; }

/* ===== CAROUSEL ===== */
.w6cf0-carousel {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 0 0 var(--w6cf0-radius) var(--w6cf0-radius);
}
.w6cf0-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.w6cf0-slide img { width: 100%; height: 200px; object-fit: cover; }
.w6cf0-slide-active { display: block; }
.w6cf0-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.w6cf0-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.w6cf0-dot-active { background: var(--w6cf0-accent); width: 20px; border-radius: 4px; }

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

/* Section titles */
.w6cf0-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--w6cf0-light);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--w6cf0-accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.w6cf0-section-title i { color: var(--w6cf0-accent); font-size: 2.2rem; }

/* ===== GAME GRID ===== */
.w6cf0-category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--w6cf0-accent);
  margin: 2rem 0 1rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--w6cf0-accent);
}
.w6cf0-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.w6cf0-game-item {
  background: var(--w6cf0-dark-light);
  border-radius: var(--w6cf0-radius);
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.w6cf0-game-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,165,0,0.2);
}
.w6cf0-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  margin-bottom: 0.4rem;
  object-fit: cover;
}
.w6cf0-game-item span {
  font-size: 1.1rem;
  color: var(--w6cf0-light);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== INFO CARDS ===== */
.w6cf0-card {
  background: var(--w6cf0-dark-light);
  border-radius: var(--w6cf0-radius);
  padding: 2rem 1.6rem;
  margin-bottom: 1.6rem;
  border-left: 3px solid var(--w6cf0-accent);
}
.w6cf0-card h2 {
  font-size: 1.8rem;
  color: var(--w6cf0-accent);
  margin-bottom: 1rem;
}
.w6cf0-card h3 {
  font-size: 1.5rem;
  color: var(--w6cf0-highlight);
  margin: 1rem 0 0.5rem;
}
.w6cf0-card p {
  color: var(--w6cf0-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}
.w6cf0-card ul { padding-left: 1.6rem; margin-bottom: 1rem; }
.w6cf0-card ul li {
  color: var(--w6cf0-light);
  line-height: 1.7;
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
  position: relative;
  padding-left: 1.2rem;
}
.w6cf0-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.8rem;
  width: 6px; height: 6px;
  background: var(--w6cf0-accent);
  border-radius: 50%;
}

/* ===== PROMO BANNER ===== */
.w6cf0-promo-banner {
  background: linear-gradient(135deg, var(--w6cf0-accent) 0%, #ff6a00 100%);
  border-radius: var(--w6cf0-radius);
  padding: 2rem 1.6rem;
  text-align: center;
  margin: 1.6rem 0;
}
.w6cf0-promo-banner h2 {
  font-size: 2rem;
  color: var(--w6cf0-dark);
  margin-bottom: 0.8rem;
}
.w6cf0-promo-banner p {
  font-size: 1.4rem;
  color: var(--w6cf0-dark);
  margin-bottom: 1.2rem;
}
.w6cf0-promo-banner .w6cf0-btn-register { font-size: 1.4rem; padding: 0.8rem 2.4rem; }

/* ===== STATS ===== */
.w6cf0-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.6rem 0;
}
.w6cf0-stat-item {
  background: var(--w6cf0-dark-light);
  border-radius: var(--w6cf0-radius);
  padding: 1.4rem 1rem;
  text-align: center;
}
.w6cf0-stat-item .w6cf0-stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--w6cf0-accent);
}
.w6cf0-stat-item .w6cf0-stat-label {
  font-size: 1.2rem;
  color: var(--w6cf0-light);
  margin-top: 0.4rem;
}

/* ===== TESTIMONIALS ===== */
.w6cf0-testimonial {
  background: var(--w6cf0-dark-light);
  border-radius: var(--w6cf0-radius);
  padding: 1.6rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--w6cf0-accent);
}
.w6cf0-testimonial p { font-size: 1.35rem; font-style: italic; color: var(--w6cf0-highlight); margin-bottom: 0.6rem; }
.w6cf0-testimonial cite { font-size: 1.2rem; color: var(--w6cf0-accent); }

/* ===== FOOTER ===== */
.w6cf0-footer {
  background: var(--w6cf0-dark);
  border-top: 2px solid var(--w6cf0-accent);
  padding: 2rem 1.2rem 1rem;
  text-align: center;
}
.w6cf0-footer-desc { font-size: 1.3rem; color: var(--w6cf0-light); line-height: 1.6; margin-bottom: 1.4rem; }
.w6cf0-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.w6cf0-footer-links a {
  background: var(--w6cf0-dark-light);
  color: var(--w6cf0-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1.2rem;
  transition: background .2s;
}
.w6cf0-footer-links a:hover { background: var(--w6cf0-accent); color: var(--w6cf0-dark); }
.w6cf0-footer-copy { font-size: 1.1rem; color: var(--w6cf0-dark-lighter); margin-top: 1rem; }

/* ===== BOTTOM NAV ===== */
.w6cf0-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: linear-gradient(180deg, var(--w6cf0-dark-light) 0%, var(--w6cf0-dark) 100%);
  border-top: 2px solid var(--w6cf0-accent);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.4rem;
}
.w6cf0-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  color: var(--w6cf0-light);
  text-decoration: none;
  transition: transform .15s, color .15s;
  gap: 2px;
}
.w6cf0-bottom-nav a:hover, .w6cf0-bottom-nav a:focus { color: var(--w6cf0-accent); transform: scale(1.08); }
.w6cf0-bottom-nav a i { font-size: 22px; }
.w6cf0-bottom-nav a span { font-size: 1rem; }
.w6cf0-bottom-nav .w6cf0-nav-active { color: var(--w6cf0-accent); }
.w6cf0-bottom-nav .w6cf0-nav-active::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--w6cf0-accent);
  border-radius: 1px;
  margin-top: 1px;
}
@media (min-width: 769px) { .w6cf0-bottom-nav { display: none; } }

/* ===== DESKTOP NAV ===== */
.w6cf0-desktop-nav { display: none; }
@media (min-width: 769px) {
  .w6cf0-desktop-nav {
    display: flex;
    gap: 1.6rem;
    align-items: center;
  }
  .w6cf0-desktop-nav a {
    color: var(--w6cf0-light);
    font-size: 1.3rem;
    transition: color .2s;
  }
  .w6cf0-desktop-nav a:hover { color: var(--w6cf0-accent); }
  .w6cf0-container { max-width: 768px; }
  .w6cf0-game-grid { grid-template-columns: repeat(5, 1fr); }
  .w6cf0-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ===== UTILITIES ===== */
.w6cf0-text-accent { color: var(--w6cf0-accent); font-weight: 600; }
.w6cf0-text-highlight { color: var(--w6cf0-highlight); font-weight: 600; }
.w6cf0-mt-1 { margin-top: 1rem; }
.w6cf0-mt-2 { margin-top: 2rem; }
.w6cf0-mb-1 { margin-bottom: 1rem; }
.w6cf0-mb-2 { margin-bottom: 2rem; }
.w6cf0-text-center { text-align: center; }

/* Back to top */
.w6cf0-back-top {
  position: fixed;
  bottom: 70px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--w6cf0-accent);
  color: var(--w6cf0-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--w6cf0-shadow);
}
@media (min-width: 769px) { .w6cf0-back-top { bottom: 20px; } }

/* FAQ Accordion */
.w6cf0-faq-item { margin-bottom: 1rem; }
.w6cf0-faq-q {
  background: var(--w6cf0-dark-light);
  padding: 1.2rem 1.4rem;
  border-radius: var(--w6cf0-radius);
  font-weight: 600;
  color: var(--w6cf0-accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.w6cf0-faq-a {
  background: var(--w6cf0-dark-lighter);
  padding: 1.2rem 1.4rem;
  border-radius: 0 0 var(--w6cf0-radius) var(--w6cf0-radius);
  color: var(--w6cf0-light);
  display: none;
  line-height: 1.7;
  font-size: 1.35rem;
}
.w6cf0-faq-item.open .w6cf0-faq-a { display: block; }

/* Payment icons */
.w6cf0-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}
.w6cf0-payment-icons span {
  background: var(--w6cf0-dark-light);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 1.2rem;
  color: var(--w6cf0-light);
}

/* Winners list */
.w6cf0-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--w6cf0-dark-light);
  border-radius: 6px;
  margin-bottom: 0.6rem;
}
.w6cf0-winner-name { font-size: 1.3rem; color: var(--w6cf0-highlight); }
.w6cf0-winner-game { font-size: 1.2rem; color: var(--w6cf0-light); }
.w6cf0-winner-amount { font-size: 1.3rem; color: var(--w6cf0-accent); font-weight: 700; }
