/*
 * filbet app - Design Stylesheet
 * All classes use w0082- prefix for namespace isolation
 * Color Palette: #F08080 | #FA8072 | #1C2833 | #00FFFF | #FFFFBA
 * Mobile-first design (max-width: 430px)
 */

/* CSS Variables */
:root {
  --w0082-primary: #F08080;
  --w0082-secondary: #FA8072;
  --w0082-bg: #1C2833;
  --w0082-accent: #00FFFF;
  --w0082-light: #FFFFBA;
  --w0082-bg-dark: #0F1923;
  --w0082-bg-card: #243342;
  --w0082-text: #E8E8E8;
  --w0082-text-muted: #A0B0C0;
  --w0082-border: #2C3E50;
  --w0082-radius: 8px;
  --w0082-radius-lg: 14px;
  --w0082-shadow: 0 4px 15px rgba(0,0,0,0.3);
  --w0082-transition: all 0.3s ease;
  --w0082-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 62.5%;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--w0082-font);
  background: var(--w0082-bg-dark);
  color: var(--w0082-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: var(--w0082-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* ========== HEADER ========== */
.w0082-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--w0082-bg) 0%, var(--w0082-bg-dark) 100%);
  border-bottom: 2px solid var(--w0082-primary);
  height: 56px;
}
.w0082-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 56px;
}
.w0082-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.w0082-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}
.w0082-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w0082-primary);
  letter-spacing: 0.5px;
}
.w0082-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.w0082-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--w0082-radius);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--w0082-transition);
  min-height: 36px;
}
.w0082-btn-register {
  background: linear-gradient(135deg, var(--w0082-primary), var(--w0082-secondary));
  color: #fff;
  box-shadow: 0 2px 8px rgba(240,128,128,0.4);
}
.w0082-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240,128,128,0.6);
}
.w0082-btn-login {
  background: transparent;
  color: var(--w0082-accent);
  border: 1.5px solid var(--w0082-accent);
}
.w0082-btn-login:hover {
  background: rgba(0,255,255,0.1);
}
.w0082-menu-btn {
  background: none;
  border: none;
  color: var(--w0082-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* ========== MOBILE MENU ========== */
.w0082-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}
.w0082-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: var(--w0082-bg);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.w0082-mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--w0082-text);
  font-size: 2.4rem;
  cursor: pointer;
}
.w0082-mobile-menu h3 {
  color: var(--w0082-primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--w0082-border);
}
.w0082-mobile-menu ul li {
  margin-bottom: 0.6rem;
}
.w0082-mobile-menu ul li a {
  display: block;
  padding: 1rem 0.8rem;
  color: var(--w0082-text);
  font-size: 1.5rem;
  border-radius: var(--w0082-radius);
  transition: var(--w0082-transition);
}
.w0082-mobile-menu ul li a:hover {
  background: var(--w0082-bg-card);
  color: var(--w0082-accent);
  padding-left: 1.2rem;
}

/* ========== CAROUSEL ========== */
.w0082-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--w0082-radius-lg);
  margin-top: 0.8rem;
}
.pro29f-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.w0082-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}
.w0082-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--w0082-radius-lg);
}
.w0082-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.pro29f-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--w0082-transition);
  border: none;
}
.pro29f-carousel-dot.pro29f-active,
.pro29f-carousel-dot:hover {
  background: var(--w0082-primary);
  transform: scale(1.3);
}

/* ========== MAIN CONTENT ========== */
.w0082-main {
  padding-top: 64px;
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .w0082-main { padding-bottom: 80px; }
}

/* Section titles */
.w0082-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--w0082-light);
  margin: 1.8rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--w0082-primary);
  line-height: 1.3;
}
.w0082-section-title span {
  color: var(--w0082-accent);
}

/* ========== GAME GRID ========== */
.w0082-category-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--w0082-primary);
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.w0082-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.w0082-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--w0082-transition);
  padding: 0.4rem;
  border-radius: var(--w0082-radius);
}
.w0082-game-item:hover {
  transform: translateY(-2px);
  background: var(--w0082-bg-card);
}
.w0082-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--w0082-radius);
  border: 1.5px solid var(--w0082-border);
  object-fit: cover;
}
.w0082-game-item span {
  font-size: 1.1rem;
  color: var(--w0082-text-muted);
  text-align: center;
  margin-top: 0.3rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== CONTENT SECTIONS ========== */
.w0082-content-block {
  background: var(--w0082-bg-card);
  border-radius: var(--w0082-radius-lg);
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid var(--w0082-border);
}
.w0082-content-block h2 {
  color: var(--w0082-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.w0082-content-block h3 {
  color: var(--w0082-accent);
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
}
.w0082-content-block p {
  color: var(--w0082-text);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

/* Promo CTA */
.w0082-promo-cta {
  background: linear-gradient(135deg, var(--w0082-primary), var(--w0082-secondary));
  border-radius: var(--w0082-radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin: 1.2rem 0;
  cursor: pointer;
  transition: var(--w0082-transition);
}
.w0082-promo-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(240,128,128,0.5);
}
.w0082-promo-cta h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.w0082-promo-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
}

/* Link text */
.w0082-link-text {
  color: var(--w0082-accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--w0082-transition);
}
.w0082-link-text:hover {
  color: var(--w0082-primary);
}

/* Internal links */
.w0082-internal-link {
  color: var(--w0082-light);
  text-decoration: underline;
  text-decoration-color: var(--w0082-accent);
  text-underline-offset: 2px;
  transition: var(--w0082-transition);
}
.w0082-internal-link:hover {
  color: var(--w0082-accent);
}

/* ========== FEATURES GRID ========== */
.w0082-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.w0082-feature-card {
  background: var(--w0082-bg);
  border-radius: var(--w0082-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--w0082-border);
  transition: var(--w0082-transition);
}
.w0082-feature-card:hover {
  border-color: var(--w0082-primary);
}
.w0082-feature-card .w0082-icon {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.w0082-feature-card h4 {
  color: var(--w0082-primary);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.w0082-feature-card p {
  font-size: 1.2rem;
  color: var(--w0082-text-muted);
  line-height: 1.3;
}

/* ========== RTP TABLE ========== */
.w0082-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}
.w0082-rtp-table th {
  background: var(--w0082-bg);
  color: var(--w0082-accent);
  padding: 0.8rem;
  text-align: left;
  border-bottom: 2px solid var(--w0082-primary);
}
.w0082-rtp-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--w0082-border);
  color: var(--w0082-text);
}
.w0082-rtp-table tr:hover td {
  background: rgba(0,255,255,0.05);
}

/* ========== TESTIMONIALS ========== */
.w0082-testimonial {
  background: var(--w0082-bg);
  border-radius: var(--w0082-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--w0082-primary);
}
.w0082-testimonial p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--w0082-text-muted);
  margin-bottom: 0.5rem;
}
.w0082-testimonial cite {
  font-size: 1.2rem;
  color: var(--w0082-accent);
  font-style: normal;
}

/* ========== WINNERS ========== */
.w0082-winner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--w0082-bg);
  border-radius: var(--w0082-radius);
  margin-bottom: 0.5rem;
}
.w0082-winner-item .w0082-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--w0082-primary), var(--w0082-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.w0082-winner-info {
  flex: 1;
}
.w0082-winner-info strong {
  color: var(--w0082-primary);
  font-size: 1.3rem;
  display: block;
}
.w0082-winner-info span {
  color: var(--w0082-text-muted);
  font-size: 1.2rem;
}
.w0082-winner-amount {
  color: var(--w0082-accent);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ========== FOOTER ========== */
.w0082-footer {
  background: var(--w0082-bg);
  padding: 2rem 0 1rem;
  margin-top: 2rem;
  border-top: 2px solid var(--w0082-primary);
}
.w0082-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.w0082-footer-brand p {
  color: var(--w0082-text-muted);
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}
.w0082-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.w0082-footer-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--w0082-bg-card);
  color: var(--w0082-text);
  border-radius: var(--w0082-radius);
  font-size: 1.2rem;
  transition: var(--w0082-transition);
}
.w0082-footer-links a:hover {
  background: var(--w0082-primary);
  color: #fff;
}
.w0082-footer-partners {
  text-align: center;
  margin-bottom: 1rem;
}
.w0082-footer-partners img {
  max-height: 28px;
  margin: 0 auto;
}
.w0082-footer-copyright {
  text-align: center;
  color: var(--w0082-text-muted);
  font-size: 1.2rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--w0082-border);
}

/* ========== BOTTOM NAV ========== */
.w0082-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--w0082-bg) 0%, var(--w0082-bg-dark) 100%);
  border-top: 2px solid var(--w0082-primary);
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.3rem;
}
.pro29f-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 54px;
  background: none;
  border: none;
  color: var(--w0082-text-muted);
  cursor: pointer;
  transition: var(--w0082-transition);
  border-radius: var(--w0082-radius);
  padding: 0.3rem;
}
.pro29f-bottom-nav-btn .w0082-nav-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pro29f-bottom-nav-btn .w0082-nav-label {
  font-size: 1rem;
  line-height: 1;
}
.pro29f-bottom-nav-btn:hover,
.pro29f-bottom-nav-btn.pro29f-nav-active {
  color: var(--w0082-primary);
  background: rgba(240,128,128,0.15);
}
.pro29f-bottom-nav-btn:active {
  transform: scale(0.9);
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .w0082-bottom-nav { display: none; }
}

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

/* ========== FAQ ========== */
.w0082-faq-item {
  background: var(--w0082-bg);
  border-radius: var(--w0082-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--w0082-border);
}
.w0082-faq-item strong {
  color: var(--w0082-primary);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}
.w0082-faq-item p {
  color: var(--w0082-text-muted);
  font-size: 1.3rem;
  line-height: 1.5;
}

/* ========== HELPERS ========== */
.w0082-text-center { text-align: center; }
.w0082-mt-1 { margin-top: 0.5rem; }
.w0082-mt-2 { margin-top: 1rem; }
.w0082-mb-1 { margin-bottom: 0.5rem; }
.w0082-mb-2 { margin-bottom: 1rem; }
.w0082-hidden { display: none; }

/* Promo inline link style */
.w0082-promo-link {
  color: var(--w0082-primary);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px dashed var(--w0082-primary);
  transition: var(--w0082-transition);
}
.w0082-promo-link:hover {
  color: var(--w0082-accent);
  border-bottom-color: var(--w0082-accent);
}

/* Winner highlight shimmer */
@keyframes w0082-shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.w0082-winner-highlight {
  background: linear-gradient(90deg, var(--w0082-bg) 25%, rgba(0,255,255,0.08) 50%, var(--w0082-bg) 75%);
  background-size: 400px 100%;
  animation: w0082-shimmer 2s infinite;
}
