/**
 * jlss.click - Main Stylesheet
 * All classes use we5c4- prefix for namespace isolation
 * Color Palette: #FFB74D (amber accent), #333333 (dark bg), #BF360C (deep red)
 */

:root {
  --we5c4-primary: #FFB74D;
  --we5c4-bg: #333333;
  --we5c4-accent: #BF360C;
  --we5c4-text: #F5F5F5;
  --we5c4-text-dark: #1A1A1A;
  --we5c4-card-bg: #2A2A2A;
  --we5c4-border: #4A4A4A;
  --we5c4-light-bg: #F0EBE3;
  --we5c4-gold: #FFD54F;
  --we5c4-success: #4CAF50;
  --we5c4-radius: 1.2rem;
}

/* 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', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--we5c4-text);
  background: var(--we5c4-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
}
a { color: var(--we5c4-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--we5c4-gold); }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.we5c4-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  border-bottom: 2px solid var(--we5c4-primary);
  padding: 0 1rem;
  height: 5.6rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 430px; margin: 0 auto;
}
.we5c4-logo-area {
  display: flex; align-items: center; gap: 0.8rem;
}
.we5c4-logo-area img { width: 3.2rem; height: 3.2rem; border-radius: 0.6rem; }
.we5c4-logo-area span { font-size: 1.8rem; font-weight: 800; color: var(--we5c4-primary); letter-spacing: 1px; }
.we5c4-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.we5c4-btn-register {
  background: var(--we5c4-primary); color: var(--we5c4-text-dark); border: none;
  padding: 0.6rem 1.4rem; border-radius: 2rem; font-size: 1.3rem;
  font-weight: 700; cursor: pointer; transition: all .25s;
}
.we5c4-btn-register:hover { background: var(--we5c4-gold); transform: scale(1.05); }
.we5c4-btn-login {
  background: transparent; color: var(--we5c4-primary);
  border: 2px solid var(--we5c4-primary); padding: 0.5rem 1.2rem;
  border-radius: 2rem; font-size: 1.3rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
}
.we5c4-btn-login:hover { background: var(--we5c4-primary); color: var(--we5c4-text-dark); }
.we5c4-menu-toggle {
  background: none; border: none; color: var(--we5c4-primary);
  font-size: 2.4rem; cursor: pointer; padding: 0.4rem;
}

/* Mobile Menu */
.we5c4-menu-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.6); z-index: 9998;
}
.we5c4-mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: 75%; max-width: 300px;
  background: linear-gradient(180deg, #1A1A1A, #2A2A2A);
  z-index: 9999; transform: translateX(-100%); transition: transform .3s ease;
  padding: 2rem 1.5rem; overflow-y: auto;
}
.we5c4-mobile-menu-close {
  background: none; border: none; color: var(--we5c4-primary);
  font-size: 2.8rem; cursor: pointer; position: absolute; top: 1rem; right: 1rem;
}
.we5c4-mobile-menu h3 {
  color: var(--we5c4-primary); font-size: 1.6rem; margin: 2rem 0 1rem;
  border-bottom: 1px solid var(--we5c4-border); padding-bottom: 0.5rem;
}
.we5c4-mobile-menu a {
  display: block; padding: 1rem 0; color: var(--we5c4-text);
  font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.we5c4-mobile-menu a:hover { color: var(--we5c4-primary); }

/* Main Content */
.we5c4-main { padding-top: 5.6rem; }
@media (max-width: 768px) { .we5c4-main { padding-bottom: 80px; } }

/* Carousel */
.we5c4-carousel { position: relative; overflow: hidden; }
.we5c4-slide {
  display: none; width: 100%; cursor: pointer; position: relative;
}
.we5c4-slide img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.we5c4-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 5;
}
.we5c4-dot {
  width: 1rem; height: 1rem; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer; border: none; transition: all .3s;
}
.we5c4-dot-active { background: var(--we5c4-primary); transform: scale(1.3); }

/* Section Title */
.we5c4-section-title {
  font-size: 1.8rem; font-weight: 800; color: var(--we5c4-primary);
  padding: 1.5rem 1rem 0.8rem; border-left: 4px solid var(--we5c4-accent);
  margin: 1rem 0 0.5rem; background: rgba(255,183,77,.05);
}
.we5c4-section-title i { margin-right: 0.5rem; }

/* Game Grid */
.we5c4-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem; padding: 0.5rem 0.8rem;
}
.we5c4-game-item {
  text-align: center; cursor: pointer; transition: transform .2s;
  border-radius: var(--we5c4-radius); overflow: hidden;
}
.we5c4-game-item:hover { transform: translateY(-3px); }
.we5c4-game-item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 1rem; border: 2px solid transparent; transition: border-color .2s;
}
.we5c4-game-item:hover img { border-color: var(--we5c4-primary); }
.we5c4-game-name {
  font-size: 1.1rem; color: var(--we5c4-text); margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  line-height: 1.3;
}

/* Content Sections */
.we5c4-section { padding: 1.5rem 1rem; }
.we5c4-section p { color: #ccc; line-height: 1.7; margin-bottom: 1rem; font-size: 1.4rem; }
.we5c4-section h2 { color: var(--we5c4-primary); font-size: 1.7rem; margin-bottom: 1rem; }
.we5c4-section h3 { color: var(--we5c4-gold); font-size: 1.5rem; margin-bottom: 0.8rem; }

/* Promo CTA */
.we5c4-cta-box {
  background: linear-gradient(135deg, var(--we5c4-accent), #D84315);
  border-radius: var(--we5c4-radius); padding: 2rem 1.5rem;
  text-align: center; margin: 1.5rem 1rem;
}
.we5c4-cta-box h2 { color: #FFF; font-size: 2rem; margin-bottom: 0.8rem; }
.we5c4-cta-box p { color: rgba(255,255,255,.9); margin-bottom: 1.2rem; }
.we5c4-cta-btn {
  display: inline-block; background: var(--we5c4-primary); color: var(--we5c4-text-dark);
  padding: 1rem 3rem; border-radius: 3rem; font-size: 1.6rem; font-weight: 800;
  cursor: pointer; border: none; transition: all .3s;
}
.we5c4-cta-btn:hover { background: var(--we5c4-gold); transform: scale(1.05); }

/* Cards */
.we5c4-card {
  background: var(--we5c4-card-bg); border-radius: var(--we5c4-radius);
  padding: 1.5rem; margin: 1rem; border: 1px solid var(--we5c4-border);
  transition: border-color .3s;
}
.we5c4-card:hover { border-color: var(--we5c4-primary); }
.we5c4-card h3 { color: var(--we5c4-primary); margin-bottom: 0.8rem; font-size: 1.5rem; }
.we5c4-card p { color: #BBB; font-size: 1.3rem; line-height: 1.6; }

/* Testimonial */
.we5c4-testimonial {
  background: linear-gradient(135deg, #2A2A2A, #353535);
  border-left: 3px solid var(--we5c4-primary);
  border-radius: 0 var(--we5c4-radius) var(--we5c4-radius) 0;
  padding: 1.2rem 1.5rem; margin: 0.8rem 1rem;
}
.we5c4-testimonial-name { color: var(--we5c4-gold); font-weight: 700; font-size: 1.3rem; }
.we5c4-testimonial-text { color: #CCC; font-size: 1.3rem; margin-top: 0.4rem; font-style: italic; }

/* Winner Showcase */
.we5c4-winner {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,183,77,.08); padding: 0.8rem 1rem;
  border-radius: var(--we5c4-radius); margin: 0.5rem 1rem;
}
.we5c4-winner-icon { font-size: 2.4rem; }
.we5c4-winner-info { flex: 1; }
.we5c4-winner-name { color: var(--we5c4-primary); font-weight: 700; font-size: 1.3rem; }
.we5c4-winner-amount { color: var(--we5c4-success); font-weight: 800; font-size: 1.5rem; }
.we5c4-winner-game { color: #999; font-size: 1.2rem; }

/* Payment Methods */
.we5c4-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center; padding: 1rem;
}
.we5c4-payment-item {
  background: var(--we5c4-card-bg); padding: 0.8rem 1.5rem;
  border-radius: 0.8rem; border: 1px solid var(--we5c4-border);
  font-size: 1.2rem; color: var(--we5c4-text); text-align: center;
  transition: border-color .2s;
}
.we5c4-payment-item:hover { border-color: var(--we5c4-primary); }
.we5c4-payment-item i { margin-right: 0.4rem; color: var(--we5c4-primary); }

/* FAQ */
.we5c4-faq-item {
  border-bottom: 1px solid var(--we5c4-border);
  padding: 1rem 0; margin: 0 1rem;
}
.we5c4-faq-q { color: var(--we5c4-primary); font-weight: 700; font-size: 1.4rem; margin-bottom: 0.5rem; }
.we5c4-faq-a { color: #BBB; font-size: 1.3rem; line-height: 1.6; }

/* Footer */
.we5c4-footer {
  background: linear-gradient(180deg, #1A1A1A, #111);
  padding: 2rem 1rem 1rem; margin-top: 2rem;
  border-top: 2px solid var(--we5c4-accent);
}
.we5c4-footer-brand { color: #999; font-size: 1.2rem; line-height: 1.6; margin-bottom: 1.5rem; }
.we5c4-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem;
}
.we5c4-footer-link {
  background: var(--we5c4-accent); color: #FFF;
  padding: 0.5rem 1.2rem; border-radius: 2rem;
  font-size: 1.2rem; font-weight: 600; cursor: pointer;
  transition: background .2s; border: none;
}
.we5c4-footer-link:hover { background: #E64A19; color: #FFF; }
.we5c4-footer-site-links {
  display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1rem;
}
.we5c4-footer-site-links a {
  color: #999; font-size: 1.2rem; transition: color .2s;
}
.we5c4-footer-site-links a:hover { color: var(--we5c4-primary); }
.we5c4-footer-copy {
  color: #666; font-size: 1.1rem; text-align: center;
  padding-top: 1rem; border-top: 1px solid #333;
}

/* Bottom Navigation */
.we5c4-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #2A2A2A, #1A1A1A);
  border-top: 2px solid var(--we5c4-primary);
  display: flex; justify-content: space-around; align-items: center;
  height: 6rem; max-width: 430px; margin: 0 auto;
}
.we5c4-bottom-nav-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 6rem; min-height: 5rem;
  cursor: pointer; transition: all .2s; background: none; border: none;
  color: #999; gap: 0.3rem;
}
.we5c4-bottom-nav-item:hover, .we5c4-nav-active { color: var(--we5c4-primary); }
.we5c4-nav-active .we5c4-nav-icon { transform: scale(1.15); }
.we5c4-nav-icon { font-size: 2.4rem; transition: transform .2s; }
.we5c4-nav-label { font-size: 1rem; font-weight: 600; }

/* Utility */
.we5c4-text-center { text-align: center; }
.we5c4-mt-1 { margin-top: 1rem; }
.we5c4-mb-1 { margin-bottom: 1rem; }
.we5c4-promo-text { color: var(--we5c4-primary); font-weight: 700; cursor: pointer; }
.we5c4-badge {
  display: inline-block; background: var(--we5c4-accent); color: #FFF;
  padding: 0.2rem 0.8rem; border-radius: 1rem; font-size: 1rem; font-weight: 700;
}

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

/* RTP Table */
.we5c4-rtp-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
  font-size: 1.3rem;
}
.we5c4-rtp-table th {
  background: var(--we5c4-accent); color: #FFF;
  padding: 0.8rem; text-align: left; font-size: 1.2rem;
}
.we5c4-rtp-table td {
  padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--we5c4-border);
  color: #CCC;
}
.we5c4-rtp-table tr:hover td { background: rgba(255,183,77,.05); }

/* Feature Grid */
.we5c4-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem; padding: 0 1rem;
}
.we5c4-feature-item {
  background: var(--we5c4-card-bg); padding: 1.2rem;
  border-radius: var(--we5c4-radius); text-align: center;
  border: 1px solid var(--we5c4-border); transition: all .3s;
}
.we5c4-feature-item:hover { border-color: var(--we5c4-primary); transform: translateY(-2px); }
.we5c4-feature-icon { font-size: 2.8rem; color: var(--we5c4-primary); margin-bottom: 0.5rem; }
.we5c4-feature-title { color: var(--we5c4-gold); font-weight: 700; font-size: 1.3rem; }
.we5c4-feature-desc { color: #999; font-size: 1.1rem; margin-top: 0.3rem; }

/* Promotional link style */
.we5c4-promo-link {
  color: var(--we5c4-primary); font-weight: 700; cursor: pointer;
  text-decoration: underline; transition: color .2s;
}
.we5c4-promo-link:hover { color: var(--we5c4-gold); }
