@charset "UTF-8";
/* ============================================================
   JL999 - layout-3029.css
   All custom classes use prefix: w3029-
   Color palette: #FFF8DC | #FAFAD2 | #0A0A0A | #FFB3FF | #C9C9FF
   ============================================================ */

:root {
  --w3029-bg: #0A0A0A;
  --w3029-bg-soft: #161616;
  --w3029-bg-card: #1c1c1c;
  --w3029-primary: #FFB3FF;
  --w3029-secondary: #C9C9FF;
  --w3029-accent: #FAFAD2;
  --w3029-cream: #FFF8DC;
  --w3029-text: #FFF8DC;
  --w3029-text-soft: #C9C9FF;
  --w3029-text-muted: #9a9a9a;
  --w3029-gold: #FFD86B;
  --w3029-success: #6BFFB3;
  --w3029-border: rgba(255, 179, 255, 0.18);
  --w3029-radius: 14px;
  --w3029-radius-sm: 8px;
  --w3029-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  --w3029-maxw: 430px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--w3029-bg);
  color: var(--w3029-text);
  line-height: 1.5rem;
  font-size: 14px;
  overflow-x: hidden;
  max-width: var(--w3029-maxw);
  margin: 0 auto;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: var(--w3029-primary); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.w3029-container {
  width: 100%;
  padding: 0 12px;
}
.w3029-wrapper {
  width: 100%;
  max-width: var(--w3029-maxw);
  margin: 0 auto;
}
.w3029-section {
  padding: 22px 0;
  border-top: 1px solid var(--w3029-border);
}
.w3029-grid {
  display: grid;
  gap: 10px;
}
.w3029-grid-4 { grid-template-columns: repeat(4, 1fr); }
.w3029-grid-3 { grid-template-columns: repeat(3, 1fr); }
.w3029-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Header ---------- */
.w3029-header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--w3029-maxw);
  background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.92) 100%);
  border-bottom: 1px solid var(--w3029-border);
  z-index: 1000;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.w3029-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 18px;
  color: var(--w3029-primary);
  letter-spacing: 0.5px;
}
.w3029-logo img {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1px solid var(--w3029-border);
}
.w3029-logo .w3029-logo-text { color: var(--w3029-accent); }
.w3029-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.w3029-menu-btn {
  background: transparent;
  border: 1px solid var(--w3029-border);
  color: var(--w3029-text);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

/* ---------- Buttons ---------- */
.w3029-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 36px;
}
.w3029-btn:active { transform: scale(0.96); }
.w3029-btn-register {
  background: linear-gradient(90deg, var(--w3029-primary), var(--w3029-gold));
  color: #0A0A0A;
  box-shadow: 0 4px 14px rgba(255, 179, 255, 0.35);
}
.w3029-btn-login {
  background: transparent;
  color: var(--w3029-accent);
  border: 1px solid var(--w3029-accent);
}
.w3029-btn-promo {
  background: linear-gradient(90deg, var(--w3029-secondary), var(--w3029-primary));
  color: #0A0A0A;
  font-weight: 800;
  padding: 10px 20px;
}
.w3029-link-bold {
  color: var(--w3029-primary);
  font-weight: 800;
}

/* ---------- Mobile dropdown menu ---------- */
.w3029-mobile-menu {
  position: fixed;
  top: 56px; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--w3029-maxw);
  background: var(--w3029-bg-soft);
  border-bottom: 1px solid var(--w3029-border);
  padding: 8px 12px 14px;
  z-index: 9999;
  display: none;
  box-shadow: var(--w3029-shadow);
}
.w3029-mobile-menu.w3029-menu-open { display: block; }
.w3029-mobile-menu a {
  display: block;
  padding: 10px 8px;
  color: var(--w3029-accent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
.w3029-mobile-menu a:active { background: rgba(255,179,255,0.08); }

/* ---------- Main ---------- */
.w3029-main {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* ---------- Hero / Carousel ---------- */
.w3029-hero {
  position: relative;
  width: 100%;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  margin-bottom: 6px;
}
.w3029-slide {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.w3029-slide.w3029-slide-active { display: block; }
.w3029-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.w3029-slide-cap {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(10,10,10,0.6);
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--w3029-accent);
  font-weight: 700;
  font-size: 13px;
}
.w3029-dots {
  position: absolute;
  bottom: 8px; right: 12px;
  display: flex; gap: 6px;
}
.w3029-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.w3029-dot.w3029-dot-active { background: var(--w3029-primary); }

/* ---------- Section titles ---------- */
.w3029-section-title {
  font-size: 18px;
  color: var(--w3029-accent);
  margin: 14px 0 10px;
  padding-left: 8px;
  border-left: 4px solid var(--w3029-primary);
}
.w3029-section-title .w3029-icon { color: var(--w3029-primary); margin-right: 6px; }
.w3029-subtitle {
  color: var(--w3029-text-soft);
  font-size: 13px;
  margin-bottom: 8px;
}
.w3029-h1 {
  font-size: 22px;
  color: var(--w3029-cream);
  text-align: center;
  margin: 8px 0 12px;
  padding: 0 10px;
}
.w3029-h1 .w3029-h1-mark { color: var(--w3029-primary); }

/* ---------- Game cards ---------- */
.w3029-game-card {
  background: var(--w3029-bg-card);
  border-radius: var(--w3029-radius-sm);
  padding: 6px;
  text-align: center;
  border: 1px solid var(--w3029-border);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.w3029-game-card:active {
  transform: scale(0.95);
  border-color: var(--w3029-primary);
}
.w3029-game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 4px;
}
.w3029-game-name {
  font-size: 11px;
  color: var(--w3029-accent);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w3029-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 10px;
}
.w3029-cat-head h2 {
  font-size: 16px;
  color: var(--w3029-accent);
}
.w3029-cat-head .w3029-cat-more {
  font-size: 12px;
  color: var(--w3029-primary);
}

/* ---------- Info / Feature blocks ---------- */
.w3029-card {
  background: var(--w3029-bg-card);
  border-radius: var(--w3029-radius);
  padding: 14px;
  border: 1px solid var(--w3029-border);
  margin-bottom: 12px;
}
.w3029-card h3 {
  font-size: 15px;
  color: var(--w3029-primary);
  margin-bottom: 6px;
}
.w3029-card p {
  font-size: 13px;
  color: var(--w3029-text);
  margin-bottom: 6px;
}
.w3029-card ul li {
  padding: 4px 0;
  font-size: 13px;
  color: var(--w3029-accent);
  padding-left: 16px;
  position: relative;
}
.w3029-card ul li:before {
  content: "▸";
  position: absolute; left: 0;
  color: var(--w3029-primary);
}
.w3029-step {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.w3029-step-num {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--w3029-primary), var(--w3029-secondary));
  color: #0A0A0A;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.w3029-step-body { flex: 1; }
.w3029-step-body strong { color: var(--w3029-accent); }
.w3029-step-body span { color: var(--w3029-text-muted); font-size: 12px; display: block; }

/* ---------- RTP / Stats ---------- */
.w3029-stat-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
  font-size: 12px;
}
.w3029-stat-row span:first-child { color: var(--w3029-accent); font-weight: 600; }
.w3029-stat-row .w3029-rtp { color: var(--w3029-success); font-weight: 700; }
.w3029-stat-row .w3029-vol { color: var(--w3029-gold); }

/* ---------- Testimonials ---------- */
.w3029-testi {
  background: var(--w3029-bg-card);
  border-radius: var(--w3029-radius-sm);
  padding: 10px 12px;
  margin-bottom: 8px;
  border-left: 3px solid var(--w3029-primary);
}
.w3029-testi-name { font-weight: 700; color: var(--w3029-accent); font-size: 13px; }
.w3029-testi-stars { color: var(--w3029-gold); font-size: 12px; }
.w3029-testi-text { font-size: 12px; color: var(--w3029-text); margin-top: 4px; }

/* ---------- Payment icons ---------- */
.w3029-pay-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 0;
}
.w3029-pay-chip {
  background: var(--w3029-bg-card);
  border: 1px solid var(--w3029-border);
  color: var(--w3029-accent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* ---------- Winner showcase ---------- */
.w3029-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--w3029-bg-card);
  border-radius: var(--w3029-radius-sm);
  margin-bottom: 6px;
  font-size: 12px;
}
.w3029-winner .w3029-wname { color: var(--w3029-accent); font-weight: 700; }
.w3029-winner .w3029-wgame { color: var(--w3029-text-muted); }
.w3029-winner .w3029-wamt { color: var(--w3029-success); font-weight: 800; }

/* ---------- App download CTA ---------- */
.w3029-cta {
  background: linear-gradient(135deg, rgba(255,179,255,0.18), rgba(201,201,255,0.12));
  border: 1px solid var(--w3029-border);
  border-radius: var(--w3029-radius);
  padding: 16px;
  text-align: center;
  margin: 14px 0;
}
.w3029-cta h3 { color: var(--w3029-accent); font-size: 16px; margin-bottom: 6px; }
.w3029-cta p { color: var(--w3029-text-soft); font-size: 13px; margin-bottom: 10px; }
.w3029-cta-btns { display: flex; gap: 8px; justify-content: center; }

/* ---------- FAQ ---------- */
.w3029-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
}
.w3029-faq-q { font-weight: 700; color: var(--w3029-accent); font-size: 13px; }
.w3029-faq-a { color: var(--w3029-text); font-size: 12px; margin-top: 4px; }

/* ---------- Footer ---------- */
.w3029-footer {
  background: var(--w3029-bg-soft);
  border-top: 1px solid var(--w3029-border);
  padding: 18px 12px 14px;
  margin-top: 16px;
}
.w3029-footer h4 {
  color: var(--w3029-primary);
  font-size: 14px;
  margin-bottom: 8px;
}
.w3029-footer p { color: var(--w3029-text-muted); font-size: 12px; margin-bottom: 8px; }
.w3029-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
  margin: 8px 0;
}
.w3029-footer-links a {
  font-size: 12px;
  color: var(--w3029-accent);
}
.w3029-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.w3029-footer-promo .w3029-btn {
  font-size: 11px;
  padding: 6px 10px;
}
.w3029-copy {
  text-align: center;
  color: var(--w3029-text-muted);
  font-size: 11px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 10px;
}

/* ---------- Bottom nav ---------- */
.w3029-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--w3029-maxw);
  height: 62px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0A0A0A 100%);
  border-top: 1px solid var(--w3029-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}
.w3029-bottom-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--w3029-text-muted);
  font-size: 10px;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.w3029-bottom-nav-btn:active { transform: scale(0.92); }
.w3029-bottom-nav-btn .w3029-nav-icon { font-size: 22px; }
.w3029-bottom-nav-btn.promo .w3029-nav-icon { color: var(--w3029-primary); }
.w3029-bottom-nav-active { color: var(--w3029-primary) !important; }
.w3029-bottom-nav-active .w3029-nav-icon { color: var(--w3029-primary) !important; }

/* ---------- Back to top ---------- */
.w3029-totop {
  position: fixed;
  bottom: 74px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--w3029-primary);
  color: #0A0A0A;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--w3029-shadow);
}

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