/*!
 * 32vin1 - style-b194.css
 * Mobile-first casino gaming styles. All custom classes use the wb194- prefix.
 * Color palette: #0D1117 bg | #FFA500 primary | #FFCC33 accent | #DEB887 warm | #8FBC8F sage.
 */
:root {
  --wb194-bg: #0D1117;
  --wb194-bg-soft: #161B22;
  --wb194-bg-card: #1C2330;
  --wb194-primary: #FFA500;
  --wb194-accent: #FFCC33;
  --wb194-warm: #DEB887;
  --wb194-sage: #8FBC8F;
  --wb194-text: #F5F5F5;
  --wb194-muted: #B0B6C0;
  --wb194-border: #2A313F;
  --wb194-radius: 14px;
  --wb194-header-h: 58px;
  --wb194-bottom-h: 62px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--wb194-bg);
  color: var(--wb194-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--wb194-accent); text-decoration: none; }

.wb194-container { width: 100%; padding: 0 1.2rem; }
.wb194-wrapper { padding: 1.6rem 1.2rem; }

/* ===== Header ===== */
.wb194-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--wb194-header-h);
  background: linear-gradient(180deg, #11161F 0%, var(--wb194-bg) 100%);
  border-bottom: 1px solid var(--wb194-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
}
.wb194-brand { display: flex; align-items: center; gap: 0.6rem; }
.wb194-brand img { width: 30px; height: 30px; border-radius: 8px; }
.wb194-brand-name {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--wb194-primary), var(--wb194-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wb194-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.wb194-btn {
  border: none;
  border-radius: 20px;
  padding: 0.7rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wb194-btn:active { transform: scale(0.96); }
.wb194-btn-primary {
  background: linear-gradient(90deg, var(--wb194-primary), var(--wb194-accent));
  color: #1A1300;
  box-shadow: 0 4px 14px rgba(255,165,0,0.35);
}
.wb194-btn-ghost {
  background: transparent;
  color: var(--wb194-text);
  border: 1px solid var(--wb194-border);
}
.wb194-menu-btn {
  background: transparent;
  border: none;
  color: var(--wb194-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
}

/* ===== Mobile dropdown menu ===== */
.wb194-mobile-menu {
  position: fixed;
  top: var(--wb194-header-h);
  left: 0; right: 0;
  background: var(--wb194-bg-soft);
  border-bottom: 1px solid var(--wb194-border);
  padding: 0.6rem 1.2rem 1rem;
  transform: translateY(-130%);
  transition: transform 0.28s ease;
  z-index: 9999;
  max-width: 430px;
  margin: 0 auto;
}
.wb194-menu-open { transform: translateY(0); }
.wb194-menu-link {
  display: block;
  padding: 1rem 0.6rem;
  color: var(--wb194-text);
  border-bottom: 1px solid var(--wb194-border);
  font-size: 1.4rem;
}
.wb194-menu-link:active { color: var(--wb194-primary); }

/* ===== Hero / Carousel ===== */
.wb194-main { padding-top: calc(var(--wb194-header-h) + 1rem); padding-bottom: 1rem; }
.wb194-carousel {
  position: relative;
  border-radius: var(--wb194-radius);
  overflow: hidden;
  margin: 1rem 0;
}
.wb194-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.wb194-slide-active { display: block; }
.wb194-slide img { width: 100%; height: 200px; object-fit: cover; }
.wb194-slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.wb194-slide-overlay h2 { font-size: 1.8rem; color: var(--wb194-accent); margin-bottom: 0.3rem; }
.wb194-slide-overlay p { font-size: 1.25rem; color: var(--wb194-text); }
.wb194-dots { text-align: center; padding: 0.6rem 0; }
.wb194-dot {
  display: inline-block;
  width: 8px; height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: var(--wb194-border);
  cursor: pointer;
}
.wb194-dot-active { background: var(--wb194-primary); width: 22px; border-radius: 5px; }

/* ===== Headings & Section titles ===== */
.wb194-h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: var(--wb194-text);
  padding: 0.4rem 0 0.2rem;
}
.wb194-h1 span { color: var(--wb194-primary); }
.wb194-section-title {
  font-size: 1.8rem;
  margin: 1.6rem 0 1rem;
  padding-left: 0.8rem;
  border-left: 4px solid var(--wb194-primary);
  color: var(--wb194-text);
}
.wb194-intro { color: var(--wb194-muted); font-size: 1.4rem; margin-top: 0.4rem; }

/* ===== Filter bar ===== */
.wb194-filter-bar {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.6rem 0;
  margin-bottom: 0.6rem;
  -webkit-overflow-scrolling: touch;
}
.wb194-filter-bar::-webkit-scrollbar { display: none; }
.wb194-filter-btn {
  flex: 0 0 auto;
  background: var(--wb194-bg-card);
  color: var(--wb194-text);
  border: 1px solid var(--wb194-border);
  border-radius: 18px;
  padding: 0.5rem 1.1rem;
  font-size: 1.25rem;
  cursor: pointer;
}
.wb194-filter-active {
  background: linear-gradient(90deg, var(--wb194-primary), var(--wb194-accent));
  color: #1A1300;
  border-color: transparent;
  font-weight: 700;
}

/* ===== Game grid ===== */
.wb194-game-group { margin-bottom: 1.6rem; }
.wb194-game-group-title {
  font-size: 1.5rem;
  color: var(--wb194-accent);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wb194-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.wb194-game-card {
  background: var(--wb194-bg-card);
  border: 1px solid var(--wb194-border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.wb194-game-card:active { transform: scale(0.96); border-color: var(--wb194-primary); }
.wb194-game-card img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  background: #0a0d12;
}
.wb194-game-name {
  font-size: 1.15rem;
  color: var(--wb194-text);
  text-align: center;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Cards / generic ===== */
.wb194-card {
  background: var(--wb194-bg-card);
  border: 1px solid var(--wb194-border);
  border-radius: var(--wb194-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.wb194-card h3 { color: var(--wb194-accent); font-size: 1.5rem; margin-bottom: 0.5rem; }
.wb194-card p { color: var(--wb194-muted); font-size: 1.35rem; }
.wb194-card .wb194-link { color: var(--wb194-primary); font-weight: 700; }

.wb194-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--wb194-primary), var(--wb194-accent));
  color: #1A1300;
  padding: 1rem 2rem;
  border-radius: 24px;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 1rem 0;
  cursor: pointer;
}

/* ===== Feature list ===== */
.wb194-feature-list { list-style: none; }
.wb194-feature-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--wb194-border);
  color: var(--wb194-text);
  font-size: 1.35rem;
}
.wb194-feature-list li:last-child { border-bottom: none; }
.wb194-feature-list i { color: var(--wb194-sage); font-size: 1.8rem; margin-top: 0.1rem; }

/* ===== Testimonials ===== */
.wb194-testimonials { display: grid; gap: 0.8rem; }
.wb194-testimonial {
  background: var(--wb194-bg-soft);
  border-left: 3px solid var(--wb194-warm);
  padding: 1rem;
  border-radius: 10px;
}
.wb194-testimonial p { font-size: 1.3rem; color: var(--wb194-text); margin-bottom: 0.5rem; }
.wb194-testimonial .wb194-author { color: var(--wb194-warm); font-size: 1.2rem; font-weight: 700; }

/* ===== Payment chips ===== */
.wb194-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wb194-chip {
  background: var(--wb194-bg-soft);
  border: 1px solid var(--wb194-border);
  color: var(--wb194-text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== FAQ ===== */
.wb194-faq-item { border-bottom: 1px solid var(--wb194-border); }
.wb194-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--wb194-text);
  font-weight: 600;
}
.wb194-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--wb194-muted);
  font-size: 1.3rem;
  padding-right: 1rem;
}
.wb194-faq-open .wb194-faq-a { padding-bottom: 1rem; }

/* ===== Reveal animation ===== */
.wb194-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.wb194-revealed { opacity: 1; transform: translateY(0); }

/* ===== Footer ===== */
.wb194-footer {
  background: var(--wb194-bg-soft);
  border-top: 1px solid var(--wb194-border);
  padding: 1.6rem 1.2rem 2rem;
  margin-top: 1.4rem;
}
.wb194-footer-about { color: var(--wb194-muted); font-size: 1.3rem; margin-bottom: 1rem; }
.wb194-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.wb194-footer-promos button, .wb194-footer-promos a {
  background: var(--wb194-bg-card);
  color: var(--wb194-accent);
  border: 1px solid var(--wb194-border);
  padding: 0.5rem 0.9rem;
  border-radius: 16px;
  font-size: 1.2rem;
  cursor: pointer;
}
.wb194-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin: 0.8rem 0;
}
.wb194-footer-links a { color: var(--wb194-muted); font-size: 1.25rem; }
.wb194-copyright {
  color: var(--wb194-muted);
  font-size: 1.15rem;
  border-top: 1px solid var(--wb194-border);
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: center;
}

/* ===== Mobile bottom nav ===== */
.wb194-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--wb194-bottom-h);
  background: linear-gradient(180deg, #11161F, #0A0D12);
  border-top: 1px solid var(--wb194-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
}
.wb194-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: transparent;
  border: none;
  color: var(--wb194-muted);
  font-size: 1rem;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.wb194-nav-btn:active { transform: scale(0.92); }
.wb194-nav-btn .wb194-nav-icon { font-size: 2.2rem; }
.wb194-nav-btn span { font-size: 1rem; line-height: 1.2rem; }
.wb194-nav-active { color: var(--wb194-primary); }
.wb194-nav-promo .wb194-nav-icon { color: var(--wb194-accent); }

/* Bottom padding so content is not hidden behind the fixed nav on mobile. */
@media (max-width: 768px) {
  body { padding-bottom: 80px; }
}

/* ===== Desktop: hide mobile-only bits and expand layout ===== */
@media (min-width: 769px) {
  body { max-width: 960px; font-size: 1.6rem; }
  .wb194-header, .wb194-mobile-menu, .wb194-bottom-nav { max-width: 960px; }
  .wb194-grid { grid-template-columns: repeat(6, 1fr); }
  .wb194-bottom-nav { display: none; }
  .wb194-testimonials { grid-template-columns: 1fr 1fr; }
  .wb194-footer-links { grid-template-columns: repeat(4, 1fr); }
}
