/**
 * SBet Stock - Layout Stylesheet
 * Prefix: w0e6f-
 * Color Palette: #00B8D4 (cyan) | #A9A9A9 (gray) | #1C2833 (dark blue) | #BAE1FF (light blue) | #3C3C3C (charcoal)
 */

/* CSS Variables */
:root {
  --w0e6f-primary: #00B8D4;
  --w0e6f-secondary: #A9A9A9;
  --w0e6f-bg-dark: #1C2833;
  --w0e6f-bg-light: #BAE1FF;
  --w0e6f-charcoal: #3C3C3C;
  --w0e6f-white: #FFFFFF;
  --w0e6f-black: #000000;
  --w0e6f-accent: #00E5FF;
  --w0e6f-gold: #FFD700;
  --w0e6f-green: #4CAF50;
  --w0e6f-red: #FF5252;
  --w0e6f-header-h: 5.6rem;
  --w0e6f-bottom-h: 6.0rem;
  --w0e6f-radius: 1.0rem;
  --w0e6f-shadow: 0 0.2rem 1.0rem rgba(0,184,212,0.15);
  --w0e6f-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; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--w0e6f-bg-dark);
  color: var(--w0e6f-white);
  line-height: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--w0e6f-primary); text-decoration: none; transition: var(--w0e6f-transition); }
a:hover { color: var(--w0e6f-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Header */
.w0e6f-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w0e6f-bg-dark);
  border-bottom: 0.1rem solid rgba(0,184,212,0.3);
  height: var(--w0e6f-header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; max-width: 430px; margin: 0 auto;
}
.w0e6f-logo { display: flex; align-items: center; gap: 0.8rem; }
.w0e6f-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.4rem; }
.w0e6f-logo-text { font-size: 1.6rem; font-weight: 700; color: var(--w0e6f-primary); }
.w0e6f-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.w0e6f-btn-reg {
  background: var(--w0e6f-primary); color: var(--w0e6f-bg-dark);
  border: none; padding: 0.6rem 1.4rem; border-radius: 2.0rem;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  transition: var(--w0e6f-transition);
}
.w0e6f-btn-reg:hover { background: var(--w0e6f-accent); transform: scale(1.05); }
.w0e6f-btn-login {
  background: transparent; color: var(--w0e6f-primary);
  border: 0.15rem solid var(--w0e6f-primary); padding: 0.5rem 1.2rem;
  border-radius: 2.0rem; font-size: 1.2rem; font-weight: 600;
  cursor: pointer; transition: var(--w0e6f-transition);
}
.w0e6f-btn-login:hover { background: rgba(0,184,212,0.1); }
.w0e6f-menu-toggle {
  background: none; border: none; color: var(--w0e6f-primary);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
}

/* Mobile Menu */
.w0e6f-mobile-menu {
  position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px;
  height: 100vh; z-index: 9999; background: var(--w0e6f-bg-dark);
  border-left: 0.1rem solid rgba(0,184,212,0.2);
  transition: right 0.3s ease; padding: 2.0rem 1.5rem;
}
.w0e6f-menu-active { right: 0 !important; }
.w0e6f-menu-close { background: none; border: none; color: var(--w0e6f-primary); font-size: 2.4rem; cursor: pointer; float: right; }
.w0e6f-menu-links { clear: both; margin-top: 2.0rem; }
.w0e6f-menu-links a {
  display: block; padding: 1.2rem 0; color: var(--w0e6f-white);
  font-size: 1.4rem; border-bottom: 0.1rem solid rgba(255,255,255,0.08);
  transition: var(--w0e6f-transition);
}
.w0e6f-menu-links a:hover { color: var(--w0e6f-primary); padding-left: 0.8rem; }
.w0e6f-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 9998; display: none;
}
.w0e6f-overlay-active { display: block !important; }

/* Main Content */
.w0e6f-main { padding-top: var(--w0e6f-header-h); }
@media (max-width: 768px) {
  .w0e6f-main { padding-bottom: 8.0rem; }
}

/* Carousel */
.w0e6f-carousel { position: relative; overflow: hidden; margin-top: 0.5rem; }
.w0e6f-slide { display: none; cursor: pointer; }
.w0e6f-slide img { width: 100%; height: auto; border-radius: 0; }
.w0e6f-dots { text-align: center; padding: 0.8rem 0; background: var(--w0e6f-bg-dark); }
.w0e6f-dot {
  display: inline-block; width: 1.0rem; height: 1.0rem; margin: 0 0.4rem;
  background: var(--w0e6f-secondary); border-radius: 50%; cursor: pointer;
  transition: var(--w0e6f-transition);
}
.w0e6f-dot-active { background: var(--w0e6f-primary); transform: scale(1.2); }

/* Section */
.w0e6f-section { padding: 2.0rem 1.2rem; }
.w0e6f-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--w0e6f-primary);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid var(--w0e6f-primary);
}

/* Game Grid */
.w0e6f-game-section { margin-bottom: 2.0rem; }
.w0e6f-cat-title {
  font-size: 1.5rem; font-weight: 700; color: var(--w0e6f-accent);
  margin-bottom: 1.0rem; display: flex; align-items: center; gap: 0.6rem;
}
.w0e6f-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem;
}
.w0e6f-game-item {
  text-align: center; cursor: pointer; border-radius: 0.8rem;
  overflow: hidden; transition: var(--w0e6f-transition);
  background: rgba(255,255,255,0.04); padding: 0.5rem;
}
.w0e6f-game-item:hover { transform: translateY(-0.3rem); background: rgba(0,184,212,0.1); }
.w0e6f-game-item img { width: 100%; aspect-ratio: 1; border-radius: 0.6rem; margin-bottom: 0.3rem; }
.w0e6f-game-name {
  font-size: 1.0rem; color: var(--w0e6f-bg-light); line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Content Cards */
.w0e6f-card {
  background: rgba(255,255,255,0.05); border-radius: var(--w0e6f-radius);
  padding: 1.6rem; margin-bottom: 1.5rem; border: 0.1rem solid rgba(0,184,212,0.15);
}
.w0e6f-card h2 { font-size: 1.6rem; color: var(--w0e6f-primary); margin-bottom: 1.0rem; }
.w0e6f-card h3 { font-size: 1.4rem; color: var(--w0e6f-accent); margin-bottom: 0.8rem; }
.w0e6f-card p { font-size: 1.2rem; color: var(--w0e6f-bg-light); line-height: 1.8rem; margin-bottom: 0.8rem; }

/* Promo Button */
.w0e6f-promo-btn {
  display: inline-block; background: linear-gradient(135deg, var(--w0e6f-primary), #0097A7);
  color: var(--w0e6f-bg-dark); padding: 1.0rem 2.4rem; border-radius: 2.5rem;
  font-size: 1.4rem; font-weight: 700; cursor: pointer; border: none;
  transition: var(--w0e6f-transition); text-align: center; margin: 0.5rem 0;
}
.w0e6f-promo-btn:hover { transform: scale(1.05); box-shadow: 0 0.4rem 1.5rem rgba(0,184,212,0.4); }
.w0e6f-promo-link { color: var(--w0e6f-accent); font-weight: 600; text-decoration: underline; cursor: pointer; }

/* Stats Row */
.w0e6f-stats { display: flex; justify-content: space-around; margin: 1.5rem 0; flex-wrap: wrap; gap: 0.8rem; }
.w0e6f-stat-item { text-align: center; flex: 1; min-width: 8.0rem; }
.w0e6f-stat-num { font-size: 2.0rem; font-weight: 700; color: var(--w0e6f-primary); }
.w0e6f-stat-label { font-size: 1.0rem; color: var(--w0e6f-secondary); }

/* Testimonial */
.w0e6f-testimonial {
  background: rgba(0,184,212,0.08); border-radius: var(--w0e6f-radius);
  padding: 1.2rem; margin-bottom: 1.0rem; border-left: 0.3rem solid var(--w0e6f-primary);
}
.w0e6f-testimonial-text { font-size: 1.2rem; color: var(--w0e6f-bg-light); font-style: italic; line-height: 1.6rem; }
.w0e6f-testimonial-author { font-size: 1.1rem; color: var(--w0e6f-primary); margin-top: 0.5rem; font-weight: 600; }

/* Winner Row */
.w0e6f-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.0rem; background: rgba(255,255,255,0.03);
  border-radius: 0.6rem; margin-bottom: 0.5rem;
}
.w0e6f-winner-name { font-size: 1.2rem; color: var(--w0e6f-bg-light); }
.w0e6f-winner-game { font-size: 1.0rem; color: var(--w0e6f-secondary); }
.w0e6f-winner-amount { font-size: 1.3rem; font-weight: 700; color: var(--w0e6f-gold); }

/* Payment Methods */
.w0e6f-payments { display: flex; flex-wrap: wrap; gap: 1.0rem; justify-content: center; margin: 1.0rem 0; }
.w0e6f-pay-item {
  background: rgba(255,255,255,0.06); padding: 0.8rem 1.4rem;
  border-radius: 0.6rem; font-size: 1.2rem; color: var(--w0e6f-bg-light);
  border: 0.1rem solid rgba(0,184,212,0.2);
}

/* App Download CTA */
.w0e6f-app-cta {
  background: linear-gradient(135deg, rgba(0,184,212,0.2), rgba(0,151,167,0.15));
  border-radius: var(--w0e6f-radius); padding: 2.0rem 1.5rem;
  text-align: center; border: 0.1rem solid rgba(0,184,212,0.3);
}
.w0e6f-app-cta h3 { font-size: 1.6rem; color: var(--w0e6f-primary); margin-bottom: 0.8rem; }
.w0e6f-app-cta p { font-size: 1.2rem; color: var(--w0e6f-bg-light); margin-bottom: 1.2rem; line-height: 1.6rem; }

/* Footer */
.w0e6f-footer {
  background: var(--w0e6f-charcoal); padding: 2.5rem 1.2rem 3.0rem;
  border-top: 0.1rem solid rgba(0,184,212,0.2);
}
.w0e6f-footer-brand { font-size: 1.2rem; color: var(--w0e6f-secondary); line-height: 1.8rem; margin-bottom: 1.5rem; }
.w0e6f-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.w0e6f-footer-links a {
  color: var(--w0e6f-bg-light); font-size: 1.1rem; padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.06); border-radius: 0.4rem; transition: var(--w0e6f-transition);
}
.w0e6f-footer-links a:hover { background: rgba(0,184,212,0.2); color: var(--w0e6f-primary); }
.w0e6f-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.w0e6f-footer-promos button {
  background: var(--w0e6f-primary); color: var(--w0e6f-bg-dark);
  border: none; padding: 0.6rem 1.2rem; border-radius: 2.0rem;
  font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: var(--w0e6f-transition);
}
.w0e6f-footer-promos button:hover { background: var(--w0e6f-accent); }
.w0e6f-footer-copy { font-size: 1.0rem; color: var(--w0e6f-secondary); text-align: center; border-top: 0.1rem solid rgba(255,255,255,0.08); padding-top: 1.2rem; }

/* Bottom Navigation */
.w0e6f-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w0e6f-charcoal); border-top: 0.15rem solid rgba(0,184,212,0.4);
  display: flex; justify-content: space-around; align-items: center;
  height: var(--w0e6f-bottom-h); max-width: 430px; margin: 0 auto;
}
.w0e6f-bottom-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 6.0rem; min-height: 5.0rem; background: none; border: none;
  color: var(--w0e6f-secondary); cursor: pointer; transition: var(--w0e6f-transition);
  padding: 0.4rem; border-radius: 0.6rem;
}
.w0e6f-bottom-btn:hover, .w0e6f-bottom-btn-active { color: var(--w0e6f-primary); background: rgba(0,184,212,0.1); }
.w0e6f-bottom-btn i, .w0e6f-bottom-btn .material-icons, .w0e6f-bottom-btn ion-icon, .w0e6f-bottom-btn bi {
  font-size: 2.4rem; margin-bottom: 0.2rem;
}
.w0e6f-bottom-btn span { font-size: 1.0rem; }

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

/* FAQ Accordion */
.w0e6f-faq-item { border-bottom: 0.1rem solid rgba(255,255,255,0.08); padding: 1.2rem 0; }
.w0e6f-faq-q { font-size: 1.3rem; color: var(--w0e6f-primary); font-weight: 600; margin-bottom: 0.5rem; }
.w0e6f-faq-a { font-size: 1.2rem; color: var(--w0e6f-bg-light); line-height: 1.6rem; }

/* Safety Feature Grid */
.w0e6f-safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.0rem; }
.w0e6f-safety-item {
  background: rgba(0,184,212,0.06); border-radius: 0.8rem; padding: 1.2rem;
  text-align: center; border: 0.1rem solid rgba(0,184,212,0.15);
}
.w0e6f-safety-item i, .w0e6f-safety-item .material-icons { font-size: 2.8rem; color: var(--w0e6f-primary); margin-bottom: 0.6rem; }
.w0e6f-safety-item h3 { font-size: 1.2rem; color: var(--w0e6f-accent); margin-bottom: 0.4rem; }
.w0e6f-safety-item p { font-size: 1.0rem; color: var(--w0e6f-secondary); line-height: 1.4rem; }

/* Utilities */
.w0e6f-text-center { text-align: center; }
.w0e6f-text-primary { color: var(--w0e6f-primary); }
.w0e6f-text-gold { color: var(--w0e6f-gold); }
.w0e6f-mt-1 { margin-top: 1.0rem; }
.w0e6f-mb-1 { margin-bottom: 1.0rem; }
.w0e6f-mb-2 { margin-bottom: 2.0rem; }

/* Responsive Adjustments */
@media (max-width: 360px) {
  .w0e6f-game-grid { grid-template-columns: repeat(3, 1fr); }
  .w0e6f-safety-grid { grid-template-columns: 1fr; }
}
