/* Core CSS for bet345.click - All classes prefixed with w2385- */
/* Color Palette: Accent #AD1457 | Dark BG #273746 | Text #F0E6D3 */

:root {
  --w2385-primary: #AD1457;
  --w2385-dark: #273746;
  --w2385-darker: #1a2530;
  --w2385-text: #F0E6D3;
  --w2385-text-muted: #a8b5c2;
  --w2385-accent: #D81B60;
  --w2385-accent-light: #E91E63;
  --w2385-gold: #FFD700;
  --w2385-gold-dark: #C5A000;
  --w2385-card-bg: #1e2d3a;
  --w2385-card-border: #2c4150;
  --w2385-success: #4CAF50;
  --w2385-radius: 8px;
  --w2385-radius-lg: 12px;
  --w2385-shadow: 0 4px 16px rgba(0,0,0,0.3);
  --w2385-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', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--w2385-darker);
  color: var(--w2385-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--w2385-accent-light); text-decoration: none; }
a:hover { color: var(--w2385-gold); }
img { max-width: 100%; height: auto; display: block; }

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

/* ========== HEADER ========== */
.w2385-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--w2385-dark), var(--w2385-darker));
  border-bottom: 2px solid var(--w2385-primary);
  max-width: 430px; margin: 0 auto;
  padding: 0.6rem 0.8rem;
  display: flex; align-items: center; justify-content: space-between;
}
.w2385-header-left { display: flex; align-items: center; gap: 0.6rem; }
.w2385-logo { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.w2385-site-name { font-size: 1.6rem; font-weight: 700; color: var(--w2385-gold); letter-spacing: 0.5px; }
.w2385-header-right { display: flex; gap: 0.5rem; align-items: center; }
.w2385-btn {
  display: inline-block; padding: 0.5rem 1rem; border: none; border-radius: var(--w2385-radius);
  font-size: 1.2rem; font-weight: 600; cursor: pointer; transition: var(--w2385-transition);
  text-align: center; min-height: 36px; line-height: 2rem;
}
.w2385-btn-register {
  background: linear-gradient(135deg, var(--w2385-primary), var(--w2385-accent));
  color: #fff; box-shadow: 0 2px 8px rgba(173,20,87,0.4);
}
.w2385-btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(173,20,87,0.6); }
.w2385-btn-login {
  background: transparent; color: var(--w2385-gold); border: 1.5px solid var(--w2385-gold);
}
.w2385-btn-login:hover { background: rgba(255,215,0,0.1); }
.w2385-menu-toggle {
  background: none; border: none; color: var(--w2385-text); font-size: 2rem; cursor: pointer;
  padding: 0.2rem; display: flex; align-items: center; justify-content: center;
}

/* ========== MOBILE MENU ========== */
.w2385-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(--w2385-transition);
}
.w2385-overlay-active { opacity: 1; visibility: visible; }
.w2385-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: linear-gradient(180deg, var(--w2385-dark), var(--w2385-darker));
  z-index: 9999; transition: right 0.35s ease;
  padding: 2rem 1.5rem; overflow-y: auto;
  border-left: 2px solid var(--w2385-primary);
}
.w2385-menu-active { right: 0; }
.w2385-menu-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--w2385-text); font-size: 2.4rem; cursor: pointer;
}
.w2385-menu-title {
  font-size: 1.8rem; color: var(--w2385-gold); margin-bottom: 2rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--w2385-card-border);
}
.w2385-menu-link {
  display: block; padding: 1rem 0; color: var(--w2385-text); font-size: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--w2385-transition);
}
.w2385-menu-link:hover { color: var(--w2385-gold); padding-left: 0.5rem; }

/* ========== CAROUSEL ========== */
.w2385-carousel { position: relative; overflow: hidden; margin-top: 48px; }
.w2385-slide {
  display: none; width: 100%; cursor: pointer;
  border-radius: 0 0 var(--w2385-radius) var(--w2385-radius);
  overflow: hidden;
}
.w2385-slide-active { display: block; }
.w2385-slide img { width: 100%; height: 180px; object-fit: cover; }

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

/* Headings */
.w2385-h1 {
  font-size: 2rem; font-weight: 700; color: var(--w2385-gold);
  margin: 1.5rem 0 1rem; padding: 0 0.5rem; line-height: 2.4rem;
}
.w2385-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--w2385-accent-light);
  margin: 1.8rem 0 0.8rem; padding: 0 0.5rem; line-height: 2.2rem;
}
.w2385-h3 {
  font-size: 1.5rem; font-weight: 600; color: var(--w2385-text);
  margin: 1.2rem 0 0.6rem; padding: 0 0.5rem;
}

/* ========== GAME GRID ========== */
.w2385-section-title {
  font-size: 1.5rem; font-weight: 700; color: var(--w2385-gold);
  margin: 1.5rem 0 0.8rem; padding: 0.5rem; display: flex;
  align-items: center; gap: 0.5rem;
  border-bottom: 2px solid var(--w2385-primary); padding-bottom: 0.5rem;
}
.w2385-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem; padding: 0.5rem;
}
.w2385-game-item {
  text-align: center; cursor: pointer; transition: var(--w2385-transition);
  border-radius: var(--w2385-radius); padding: 0.3rem;
}
.w2385-game-item:hover { transform: translateY(-2px); background: rgba(173,20,87,0.15); }
.w2385-game-item:active { transform: scale(0.95); }
.w2385-game-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--w2385-radius);
  border: 1.5px solid var(--w2385-card-border);
}
.w2385-game-name {
  font-size: 1rem; color: var(--w2385-text-muted); margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  line-height: 1.3rem;
}

/* ========== CONTENT CARDS ========== */
.w2385-card {
  background: var(--w2385-card-bg); border: 1px solid var(--w2385-card-border);
  border-radius: var(--w2385-radius-lg); padding: 1.2rem; margin: 0.8rem 0.5rem;
  box-shadow: var(--w2385-shadow);
}
.w2385-card-title {
  font-size: 1.5rem; font-weight: 700; color: var(--w2385-gold);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}
.w2385-card-text { font-size: 1.3rem; line-height: 2rem; color: var(--w2385-text-muted); }

/* ========== PROMO BUTTONS ========== */
.w2385-promo-btn {
  display: inline-block; padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--w2385-primary), var(--w2385-accent));
  color: #fff; border: none; border-radius: var(--w2385-radius);
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  transition: var(--w2385-transition); text-align: center;
  box-shadow: 0 3px 10px rgba(173,20,87,0.4);
}
.w2385-promo-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(173,20,87,0.6); }
.w2385-promo-btn:active { transform: scale(0.96); }
.w2385-promo-text { color: var(--w2385-accent-light); font-weight: 600; cursor: pointer; }
.w2385-promo-text:hover { color: var(--w2385-gold); text-decoration: underline; }

/* ========== FEATURES LIST ========== */
.w2385-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; padding: 0.5rem; }
.w2385-feature-item {
  background: var(--w2385-card-bg); border: 1px solid var(--w2385-card-border);
  border-radius: var(--w2385-radius); padding: 1rem; text-align: center;
  transition: var(--w2385-transition);
}
.w2385-feature-item:hover { border-color: var(--w2385-primary); }
.w2385-feature-icon { font-size: 2.4rem; color: var(--w2385-primary); margin-bottom: 0.5rem; }
.w2385-feature-label { font-size: 1.2rem; color: var(--w2385-text); font-weight: 600; }
.w2385-feature-desc { font-size: 1rem; color: var(--w2385-text-muted); margin-top: 0.3rem; }

/* ========== TESTIMONIALS ========== */
.w2385-testimonial {
  background: var(--w2385-card-bg); border-left: 3px solid var(--w2385-primary);
  border-radius: 0 var(--w2385-radius) var(--w2385-radius) 0;
  padding: 1rem 1.2rem; margin: 0.8rem 0.5rem;
}
.w2385-testimonial-text { font-size: 1.3rem; color: var(--w2385-text-muted); font-style: italic; line-height: 2rem; }
.w2385-testimonial-author { font-size: 1.1rem; color: var(--w2385-gold); margin-top: 0.5rem; }

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

/* ========== WINNER SHOWCASE ========== */
.w2385-winner-list { display: flex; flex-direction: column; gap: 0.6rem; }
.w2385-winner-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--w2385-card-bg); padding: 0.8rem 1rem;
  border-radius: var(--w2385-radius); border: 1px solid var(--w2385-card-border);
}
.w2385-winner-name { font-size: 1.2rem; color: var(--w2385-text); }
.w2385-winner-amount { font-size: 1.3rem; color: var(--w2385-gold); font-weight: 700; }

/* ========== FOOTER ========== */
.w2385-footer {
  background: var(--w2385-dark); border-top: 2px solid var(--w2385-primary);
  padding: 1.5rem 1rem 2rem; margin-top: 2rem; text-align: center;
}
@media (max-width: 768px) {
  .w2385-footer { padding-bottom: 80px; }
}
.w2385-footer-brand { font-size: 1.3rem; color: var(--w2385-text-muted); line-height: 2rem; margin-bottom: 1rem; }
.w2385-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 1rem 0; }
.w2385-footer-link {
  font-size: 1.1rem; color: var(--w2385-text-muted); padding: 0.4rem 0.6rem;
  background: var(--w2385-card-bg); border-radius: var(--w2385-radius);
  transition: var(--w2385-transition);
}
.w2385-footer-link:hover { color: var(--w2385-gold); background: var(--w2385-card-border); }
.w2385-footer-copy { font-size: 1.1rem; color: var(--w2385-text-muted); margin-top: 1rem; opacity: 0.7; }

/* ========== BOTTOM NAV ========== */
.w2385-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, var(--w2385-dark), var(--w2385-darker));
  border-top: 2px solid var(--w2385-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 60px; max-width: 430px; margin: 0 auto;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}
.w2385-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(--w2385-text-muted); cursor: pointer; transition: var(--w2385-transition);
  padding: 0.3rem; border-radius: var(--w2385-radius);
}
.w2385-bottom-btn:hover, .w2385-bottom-btn-active { color: var(--w2385-gold); }
.w2385-bottom-btn-icon { font-size: 2.2rem; margin-bottom: 0.1rem; }
.w2385-bottom-btn-label { font-size: 1rem; line-height: 1.2rem; }

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .w2385-bottom-nav { display: none; }
}

/* ========== HELP PAGE STYLES ========== */
.w2385-help-section { padding: 0.5rem; margin-bottom: 1rem; }
.w2385-step-list { list-style: none; counter-reset: w2385-step; padding: 0; }
.w2385-step-item {
  counter-increment: w2385-step; position: relative;
  padding: 0.8rem 0.8rem 0.8rem 3.5rem; margin-bottom: 0.8rem;
  background: var(--w2385-card-bg); border-radius: var(--w2385-radius);
  border: 1px solid var(--w2385-card-border); font-size: 1.3rem; line-height: 2rem;
  color: var(--w2385-text-muted);
}
.w2385-step-item::before {
  content: counter(w2385-step);
  position: absolute; left: 0.8rem; top: 0.8rem;
  width: 2rem; height: 2rem; background: var(--w2385-primary);
  color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}

/* FAQ Accordion */
.w2385-faq-item {
  background: var(--w2385-card-bg); border: 1px solid var(--w2385-card-border);
  border-radius: var(--w2385-radius); margin-bottom: 0.6rem; overflow: hidden;
}
.w2385-faq-question {
  padding: 1rem; font-size: 1.3rem; font-weight: 600; color: var(--w2385-text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.w2385-faq-question::after { content: '+'; font-size: 1.6rem; color: var(--w2385-primary); font-weight: 700; }
.w2385-faq-answer {
  padding: 0 1rem 1rem; font-size: 1.2rem; color: var(--w2385-text-muted); line-height: 2rem;
  display: none;
}
.w2385-faq-item.w2385-faq-open .w2385-faq-answer { display: block; }
.w2385-faq-item.w2385-faq-open .w2385-faq-question::after { content: '\2212'; }

/* ========== UTILITY CLASSES ========== */
.w2385-text-center { text-align: center; }
.w2385-text-gold { color: var(--w2385-gold); }
.w2385-text-accent { color: var(--w2385-accent-light); }
.w2385-text-muted { color: var(--w2385-text-muted); }
.w2385-mt-1 { margin-top: 0.5rem; }
.w2385-mb-1 { margin-bottom: 0.5rem; }
.w2385-p-1 { padding: 0.5rem; }
.w2385-bold { font-weight: 700; }
.w2385-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--w2385-primary), transparent);
  margin: 1.5rem 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 360px) {
  .w2385-game-grid { grid-template-columns: repeat(3, 1fr); }
  .w2385-features { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  body { max-width: 430px; }
}
