/* jljl55 play - Core Stylesheet */
/* All classes use w08b2- prefix */

:root {
  --w08b2-primary: #40E0D0;
  --w08b2-bg: #1B263B;
  --w08b2-text: #EEEEEE;
  --w08b2-accent: #F0E68C;
  --w08b2-secondary: #0000FF;
  --w08b2-cyan: #E0FFFF;
  --w08b2-dark: #0f1729;
  --w08b2-card: #22304a;
  --w08b2-border: #2d3f5e;
  --w08b2-success: #4ade80;
  --w08b2-warning: #fbbf24;
  --w08b2-radius: 8px;
  --w08b2-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Reset */
*, *::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, sans-serif;
  background: var(--w08b2-bg);
  color: var(--w08b2-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--w08b2-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.w08b2-container { width: 100%; padding: 0 1.2rem; }

/* Header */
.w08b2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w08b2-dark);
  border-bottom: 1px solid var(--w08b2-border);
  max-width: 430px; margin: 0 auto;
}
.w08b2-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1rem; height: 5.2rem;
}
.w08b2-logo-area { display: flex; align-items: center; gap: 0.6rem; }
.w08b2-logo-area img { width: 3rem; height: 3rem; border-radius: 50%; }
.w08b2-site-name { font-size: 1.6rem; font-weight: 700; color: var(--w08b2-accent); }
.w08b2-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.w08b2-btn-register {
  background: var(--w08b2-primary); color: var(--w08b2-dark);
  font-weight: 700; font-size: 1.2rem; padding: 0.5rem 1rem;
  border-radius: var(--w08b2-radius); border: none; cursor: pointer;
  transition: transform 0.2s;
}
.w08b2-btn-register:hover { transform: scale(1.05); }
.w08b2-btn-login {
  background: transparent; color: var(--w08b2-accent);
  font-weight: 600; font-size: 1.2rem; padding: 0.5rem 0.8rem;
  border: 1px solid var(--w08b2-accent); border-radius: var(--w08b2-radius); cursor: pointer;
}
.w08b2-hamburger {
  background: none; border: none; color: var(--w08b2-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  display: flex; align-items: center;
}

/* Mobile Menu Overlay */
.w08b2-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: all 0.3s;
}
.w08b2-overlay-active { opacity: 1; visibility: visible; }

/* Mobile Side Menu */
.w08b2-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px;
  height: 100vh; background: var(--w08b2-dark);
  z-index: 9999; transition: right 0.3s ease;
  overflow-y: auto; padding: 2rem 0;
}
.w08b2-menu-active { right: 0; }
.w08b2-menu-close {
  display: flex; justify-content: flex-end; padding: 0 1.5rem;
  margin-bottom: 1rem;
}
.w08b2-menu-close button {
  background: none; border: none; color: var(--w08b2-text);
  font-size: 2.4rem; cursor: pointer;
}
.w08b2-menu-links a {
  display: block; padding: 1.2rem 1.5rem;
  color: var(--w08b2-text); font-size: 1.4rem;
  border-bottom: 1px solid var(--w08b2-border);
  transition: background 0.2s;
}
.w08b2-menu-links a:hover { background: var(--w08b2-card); }
.w08b2-menu-cta {
  padding: 1.5rem; margin-top: 1rem;
}
.w08b2-menu-cta .w08b2-btn-register { display: block; text-align: center; padding: 1rem; font-size: 1.4rem; }

/* Main Content */
.w08b2-main { padding-top: 5.2rem; }
@media (max-width: 768px) {
  .w08b2-main { padding-bottom: 7rem; }
}

/* Carousel */
.w08b2-carousel { position: relative; overflow: hidden; width: 100%; }
.w08b2-carousel-track { display: flex; transition: transform 0.5s ease; }
.w08b2-carousel-slide {
  min-width: 100%; cursor: pointer; position: relative;
}
.w08b2-carousel-slide img {
  width: 100%; height: 18rem; object-fit: cover;
}
.w08b2-carousel-dots {
  position: absolute; bottom: 0.8rem; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.6rem;
}
.w08b2-carousel-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s;
}
.w08b2-dot-active { background: var(--w08b2-accent); }

/* Section Titles */
.w08b2-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--w08b2-accent);
  padding: 1.5rem 1.2rem 0.8rem; border-left: 3px solid var(--w08b2-primary);
  padding-left: 1rem; margin: 0 1.2rem;
}
.w08b2-section-subtitle {
  font-size: 1.4rem; color: var(--w08b2-text);
  padding: 0 1.2rem; margin-bottom: 1rem; opacity: 0.8;
}

/* Game Grid */
.w08b2-game-section { padding: 1rem 0; }
.w08b2-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem; padding: 0.5rem 1rem;
}
.w08b2-game-item {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: transform 0.2s;
  text-decoration: none;
}
.w08b2-game-item:hover { transform: scale(1.05); }
.w08b2-game-icon {
  width: 6rem; height: 6rem; border-radius: 1rem;
  object-fit: cover; border: 1px solid var(--w08b2-border);
  margin-bottom: 0.3rem;
}
.w08b2-game-name {
  font-size: 1rem; color: var(--w08b2-text); text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 6.5rem; line-height: 1.2;
}

/* Content Modules */
.w08b2-module {
  background: var(--w08b2-card); margin: 1rem;
  border-radius: var(--w08b2-radius); padding: 1.5rem;
  border: 1px solid var(--w08b2-border);
}
.w08b2-module h2 {
  font-size: 1.7rem; color: var(--w08b2-accent);
  margin-bottom: 1rem; font-weight: 700;
}
.w08b2-module h3 {
  font-size: 1.5rem; color: var(--w08b2-primary);
  margin: 1rem 0 0.5rem;
}
.w08b2-module p {
  font-size: 1.3rem; line-height: 1.8rem;
  color: var(--w08b2-text); margin-bottom: 0.8rem;
}
.w08b2-module ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.w08b2-module li {
  font-size: 1.3rem; line-height: 1.8rem;
  color: var(--w08b2-text); margin-bottom: 0.4rem;
  list-style: disc;
}

/* Affiliate Buttons */
.w08b2-affiliate-btn {
  display: inline-block; background: linear-gradient(135deg, var(--w08b2-secondary), var(--w08b2-primary));
  color: #fff; font-weight: 700; font-size: 1.3rem;
  padding: 0.8rem 1.5rem; border-radius: 2rem;
  cursor: pointer; border: none; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(64,224,208,0.3);
}
.w08b2-affiliate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64,224,208,0.5);
}
.w08b2-affiliate-text {
  color: var(--w08b2-accent); font-weight: 600;
  cursor: pointer; text-decoration: underline;
}
.w08b2-affiliate-text:hover { color: var(--w08b2-primary); }

/* CTA Section */
.w08b2-cta {
  background: linear-gradient(135deg, var(--w08b2-dark), #1a3a5c);
  padding: 2rem 1.5rem; text-align: center;
  margin: 1.5rem 1rem; border-radius: var(--w08b2-radius);
  border: 2px solid var(--w08b2-primary);
}
.w08b2-cta h2 {
  font-size: 1.8rem; color: var(--w08b2-accent); margin-bottom: 0.8rem;
}
.w08b2-cta p { font-size: 1.3rem; color: var(--w08b2-text); margin-bottom: 1.2rem; }
.w08b2-cta .w08b2-affiliate-btn { font-size: 1.5rem; padding: 1rem 2rem; }

/* RTP Analysis Table */
.w08b2-rtp-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 1.2rem; }
.w08b2-rtp-table th {
  background: var(--w08b2-dark); color: var(--w08b2-accent);
  padding: 0.6rem; text-align: left; border: 1px solid var(--w08b2-border);
}
.w08b2-rtp-table td {
  padding: 0.6rem; border: 1px solid var(--w08b2-border);
  color: var(--w08b2-text);
}
.w08b2-rtp-table tr:nth-child(even) { background: rgba(0,0,0,0.15); }

/* Winners Showcase */
.w08b2-winners { padding: 0.5rem 1rem; }
.w08b2-winner-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem; border-bottom: 1px solid var(--w08b2-border);
}
.w08b2-winner-name { font-size: 1.2rem; color: var(--w08b2-primary); font-weight: 600; }
.w08b2-winner-game { font-size: 1.1rem; color: var(--w08b2-text); opacity: 0.7; }
.w08b2-winner-amount { font-size: 1.3rem; color: var(--w08b2-accent); font-weight: 700; }

/* Payment Methods */
.w08b2-payment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem; padding: 0.5rem 0;
}
.w08b2-payment-item {
  background: var(--w08b2-dark); border-radius: var(--w08b2-radius);
  padding: 0.8rem; text-align: center;
  border: 1px solid var(--w08b2-border);
}
.w08b2-payment-item span { font-size: 1.1rem; color: var(--w08b2-text); display: block; }

/* Testimonials */
.w08b2-testimonial {
  background: var(--w08b2-dark); border-radius: var(--w08b2-radius);
  padding: 1.2rem; margin-bottom: 0.8rem;
  border-left: 3px solid var(--w08b2-primary);
}
.w08b2-testimonial-text { font-size: 1.2rem; color: var(--w08b2-text); font-style: italic; }
.w08b2-testimonial-author { font-size: 1.1rem; color: var(--w08b2-accent); margin-top: 0.5rem; }

/* Mobile App CTA */
.w08b2-app-cta {
  background: linear-gradient(135deg, #0f1729, #1a3a5c);
  padding: 2rem 1.5rem; margin: 1rem;
  border-radius: var(--w08b2-radius); text-align: center;
  border: 1px solid var(--w08b2-border);
}
.w08b2-app-cta h2 { font-size: 1.7rem; color: var(--w08b2-accent); margin-bottom: 0.8rem; }
.w08b2-app-cta p { font-size: 1.2rem; color: var(--w08b2-text); margin-bottom: 1rem; }

/* FAQ Accordion */
.w08b2-faq-item { margin-bottom: 0.5rem; }
.w08b2-faq-question {
  width: 100%; background: var(--w08b2-dark);
  border: 1px solid var(--w08b2-border); border-radius: var(--w08b2-radius);
  padding: 1.2rem; color: var(--w08b2-text); font-size: 1.3rem;
  font-weight: 600; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.w08b2-faq-question:hover { background: var(--w08b2-card); }
.w08b2-faq-icon { font-size: 1.4rem; transition: transform 0.3s; color: var(--w08b2-primary); }
.w08b2-faq-open { transform: rotate(180deg); }
.w08b2-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  background: var(--w08b2-dark); border-radius: 0 0 var(--w08b2-radius) var(--w08b2-radius);
}
.w08b2-faq-answer-inner { padding: 1rem 1.2rem; font-size: 1.2rem; line-height: 1.8rem; color: var(--w08b2-text); }

/* How To Play Steps */
.w08b2-steps { counter-reset: w08b2-step; }
.w08b2-step {
  display: flex; gap: 1rem; margin-bottom: 1.2rem;
  padding: 1rem; background: var(--w08b2-dark);
  border-radius: var(--w08b2-radius);
  border: 1px solid var(--w08b2-border);
}
.w08b2-step-num {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: var(--w08b2-primary); color: var(--w08b2-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.4rem;
}
.w08b2-step-content h3 { font-size: 1.3rem; color: var(--w08b2-accent); margin-bottom: 0.3rem; }
.w08b2-step-content p { font-size: 1.2rem; color: var(--w08b2-text); }

/* Footer */
.w08b2-footer {
  background: var(--w08b2-dark); padding: 2rem 1rem 3rem;
  border-top: 1px solid var(--w08b2-border);
}
.w08b2-footer-brand { text-align: center; margin-bottom: 1.5rem; }
.w08b2-footer-brand p { font-size: 1.2rem; color: var(--w08b2-text); opacity: 0.7; margin-top: 0.5rem; }
.w08b2-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.w08b2-footer-links a {
  font-size: 1.1rem; color: var(--w08b2-text); padding: 0.4rem 0.8rem;
  background: var(--w08b2-card); border-radius: 1rem;
  border: 1px solid var(--w08b2-border);
}
.w08b2-footer-links a:hover { color: var(--w08b2-primary); border-color: var(--w08b2-primary); }
.w08b2-partners {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding: 1rem 0;
}
.w08b2-partners img { height: 2.5rem; opacity: 0.6; filter: grayscale(50%); }
.w08b2-partners img:hover { opacity: 1; filter: none; }
.w08b2-footer-affiliate {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.w08b2-footer-affiliate .w08b2-affiliate-btn { font-size: 1.1rem; padding: 0.6rem 1.2rem; }
.w08b2-copyright {
  text-align: center; font-size: 1.1rem; color: var(--w08b2-text); opacity: 0.5;
  padding-top: 1rem; border-top: 1px solid var(--w08b2-border);
}

/* Bottom Navigation */
.w08b2-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w08b2-dark);
  border-top: 1px solid var(--w08b2-border);
  display: flex; justify-content: space-around; align-items: center;
  height: 6rem; max-width: 430px; margin: 0 auto;
  padding: 0 0.5rem;
}
.w08b2-bottom-nav-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; background: none; border: none;
  color: var(--w08b2-text); cursor: pointer;
  min-width: 6rem; min-height: 5rem; padding: 0.3rem;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}
.w08b2-bottom-nav-btn:hover, .w08b2-bottom-nav-btn:focus {
  color: var(--w08b2-primary); transform: scale(1.1);
}
.w08b2-bottom-nav-btn .w08b2-nav-icon { font-size: 2.2rem; line-height: 1; margin-bottom: 0.2rem; }
.w08b2-bottom-nav-btn .w08b2-nav-label { font-size: 1rem; line-height: 1.2; }
.w08b2-bottom-nav-btn.w08b2-nav-active .w08b2-nav-icon,
.w08b2-bottom-nav-btn.w08b2-nav-active .w08b2-nav-label {
  color: var(--w08b2-accent);
}
@media (min-width: 769px) { .w08b2-bottom-nav { display: none; } }
@media (min-width: 769px) { .w08b2-main { padding-bottom: 0; } }

/* H1 Title */
.w08b2-page-title {
  font-size: 1.8rem; font-weight: 700; color: var(--w08b2-accent);
  text-align: center; padding: 1.5rem 1rem;
}

/* Achievement badges */
.w08b2-badge {
  display: inline-block; padding: 0.3rem 0.8rem;
  border-radius: 1rem; font-size: 1rem; font-weight: 600;
}
.w08b2-badge-gold { background: #F0E68C; color: #1B263B; }
.w08b2-badge-silver { background: #C0C0C0; color: #1B263B; }
.w08b2-badge-bronze { background: #CD7F32; color: #fff; }

/* Responsive */
@media (max-width: 360px) {
  .w08b2-game-grid { grid-template-columns: repeat(3, 1fr); }
  .w08b2-game-icon { width: 5rem; height: 5rem; }
}
@media (min-width: 361px) and (max-width: 430px) {
  .w08b2-game-grid { grid-template-columns: repeat(4, 1fr); }
}
