/* ============================================================
 * 88ok99.click - style-08b9.css
 * All custom classes use the s08b- prefix.
 * Palette: #0A0A0A bg / #E5E5E5 text / #FF1493 brand / #E0FFFF + #AFEEEE accents
 * Mobile-first, max 430px layout.
 * ============================================================ */

:root {
  --s08b-bg: #0A0A0A;
  --s08b-bg-soft: #141414;
  --s08b-bg-card: #1c1c1c;
  --s08b-text: #E5E5E5;
  --s08b-text-dim: #b9b9b9;
  --s08b-primary: #FF1493;
  --s08b-primary-dark: #c20d72;
  --s08b-accent: #AFEEEE;
  --s08b-accent-2: #E0FFFF;
  --s08b-border: rgba(229, 229, 229, 0.12);
  --s08b-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  --s08b-radius: 14px;
  --s08b-radius-sm: 10px;
  --s08b-gradient: linear-gradient(135deg, #FF1493 0%, #c20d72 100%);
  --s08b-gradient-cool: linear-gradient(135deg, #E0FFFF 0%, #AFEEEE 100%);
}

/* ---------------- Reset & base ---------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Be Vietnam Pro', sans-serif;
  background: var(--s08b-bg);
  color: var(--s08b-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
  padding-top: 6rem;
  padding-bottom: 7.5rem;
}

img { max-width: 100%; display: block; }
a { color: var(--s08b-accent); text-decoration: none; }
ul, ol { list-style: none; }

/* ---------------- Layout helpers ---------------- */
.s08b-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.s08b-wrapper { width: 100%; }
.s08b-section { padding: 2.2rem 0; }
.s08b-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--s08b-accent-2);
}
.s08b-section-title i { color: var(--s08b-primary); }
.s08b-eyebrow {
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s08b-accent);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* ---------------- Header ---------------- */
.s08b-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--s08b-border);
  backdrop-filter: blur(8px);
}
.s08b-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.s08b-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--s08b-text);
  flex-shrink: 0;
}
.s08b-logo img { width: 3rem; height: 3rem; border-radius: 8px; }
.s08b-logo-text { font-size: 1.7rem; font-weight: 800; letter-spacing: 0.02em; }
.s08b-logo-text span { color: var(--s08b-primary); }
.s08b-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.s08b-icon-btn {
  background: transparent;
  border: 0;
  color: var(--s08b-text);
  font-size: 2.1rem;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
}
.s08b-icon-btn:active { transform: scale(0.92); }

/* ---------------- Buttons ---------------- */
.s08b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 4rem;
  text-align: center;
}
.s08b-btn:active { transform: scale(0.96); }
.s08b-btn-primary { background: var(--s08b-gradient); color: #fff; box-shadow: 0 4px 14px rgba(255, 20, 147, 0.4); }
.s08b-btn-ghost { background: transparent; color: var(--s08b-accent-2); border: 1px solid var(--s08b-accent); }
.s08b-btn-light { background: var(--s08b-gradient-cool); color: #0A0A0A; font-weight: 800; }
.s08b-btn-block { display: flex; width: 100%; }
.s08b-btn-sm { padding: 0.55rem 0.9rem; font-size: 1.2rem; min-height: 3rem; }

/* ---------------- Mobile menu drawer ---------------- */
.s08b-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.s08b-overlay-show { opacity: 1; visibility: visible; }
.s08b-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--s08b-bg-soft);
  z-index: 9999;
  padding: 2rem 1.4rem;
  overflow-y: auto;
  transition: right 0.3s ease;
  border-left: 1px solid var(--s08b-border);
}
.s08b-menu-open { right: 0; }
.s08b-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.s08b-menu-header h3 { font-size: 1.7rem; color: var(--s08b-accent-2); }
.s08b-menu-list li { margin-bottom: 0.4rem; }
.s08b-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0.8rem;
  color: var(--s08b-text);
  font-size: 1.45rem;
  border-radius: var(--s08b-radius-sm);
  font-weight: 600;
}
.s08b-menu-list a:active, .s08b-menu-list a:hover {
  background: rgba(255, 20, 147, 0.12);
  color: var(--s08b-accent-2);
}
.s08b-menu-list i { color: var(--s08b-primary); width: 2.2rem; text-align: center; }
.s08b-menu-cta { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }

/* ---------------- Hero / Carousel ---------------- */
.s08b-carousel {
  position: relative;
  border-radius: var(--s08b-radius);
  overflow: hidden;
  box-shadow: var(--s08b-shadow);
  margin-bottom: 1.6rem;
}
.s08b-slides { position: relative; }
.s08b-slide {
  position: relative;
  display: none;
  cursor: pointer;
}
.s08b-slide-active { display: block; animation: s08bfade 0.6s ease; }
@keyframes s08bfade { from { opacity: 0.3; } to { opacity: 1; } }
.s08b-slide img {
  width: 100%;
  height: 19rem;
  object-fit: cover;
}
.s08b-slide-cap {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  padding: 1.4rem 1rem 0.6rem;
  border-radius: 0 0 var(--s08b-radius) var(--s08b-radius);
}
.s08b-slide-cap h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.s08b-slide-cap p { font-size: 1.25rem; color: var(--s08b-accent); }
.s08b-dots {
  position: absolute;
  bottom: 0.8rem;
  right: 1.2rem;
  display: flex;
  gap: 0.5rem;
}
.s08b-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  cursor: pointer;
}
.s08b-dot-active { background: var(--s08b-primary); width: 2.2rem; border-radius: 50px; }

/* ---------------- Filter chips ---------------- */
.s08b-chips {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.4rem 0 1.2rem;
  scrollbar-width: none;
}
.s08b-chips::-webkit-scrollbar { display: none; }
.s08b-chip {
  flex-shrink: 0;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  background: var(--s08b-bg-card);
  color: var(--s08b-text-dim);
  font-size: 1.25rem;
  font-weight: 600;
  border: 1px solid var(--s08b-border);
  cursor: pointer;
}
.s08b-chip-active { background: var(--s08b-gradient); color: #fff; border-color: transparent; }

/* ---------------- Game grid & cards ---------------- */
.s08b-cat-block { margin-bottom: 2rem; }
.s08b-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.s08b-cat-head h2 {
  font-size: 1.7rem;
  color: var(--s08b-accent-2);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.s08b-cat-head h2 i { color: var(--s08b-primary); }
.s08b-cat-tag {
  font-size: 1.15rem;
  background: rgba(255, 20, 147, 0.16);
  color: var(--s08b-primary);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-weight: 700;
}
.s08b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.s08b-card {
  background: var(--s08b-bg-card);
  border-radius: var(--s08b-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid var(--s08b-border);
  display: block;
  color: var(--s08b-text);
}
.s08b-card:active { transform: scale(0.95); }
.s08b-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
}
.s08b-card-name {
  font-size: 1.15rem;
  padding: 0.5rem 0.4rem;
  text-align: center;
  font-weight: 600;
  color: var(--s08b-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s08b-card:hover .s08b-card-name { color: var(--s08b-accent); }

/* ---------------- Info / feature blocks ---------------- */
.s08b-panel {
  background: var(--s08b-bg-card);
  border-radius: var(--s08b-radius);
  padding: 1.6rem;
  border: 1px solid var(--s08b-border);
  margin-bottom: 1.4rem;
}
.s08b-panel h2, .s08b-panel h3 { color: var(--s08b-accent-2); margin-bottom: 0.8rem; }
.s08b-panel h2 { font-size: 1.85rem; }
.s08b-panel h3 { font-size: 1.55rem; margin-top: 1rem; }
.s08b-panel p { color: var(--s08b-text-dim); margin-bottom: 0.9rem; font-size: 1.35rem; }
.s08b-panel strong, .s08b-panel b { color: var(--s08b-accent); }
.s08b-panel a { color: var(--s08b-primary); font-weight: 700; }
.s08b-panel ul.s08b-bullets li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--s08b-text-dim);
  font-size: 1.35rem;
}
.s08b-panel ul.s08b-bullets li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--s08b-primary);
  position: absolute;
  left: 0;
}

/* Feature grid */
.s08b-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.s08b-feat {
  background: var(--s08b-bg-card);
  border: 1px solid var(--s08b-border);
  border-radius: var(--s08b-radius-sm);
  padding: 1.2rem;
  text-align: center;
}
.s08b-feat i {
  font-size: 2.4rem;
  color: var(--s08b-primary);
  margin-bottom: 0.5rem;
  display: block;
}
.s08b-feat h3 { font-size: 1.35rem; color: var(--s08b-accent-2); margin-bottom: 0.3rem; }
.s08b-feat p { font-size: 1.2rem; color: var(--s08b-text-dim); }

/* ---------------- RTP table ---------------- */
.s08b-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.s08b-rtp-table th, .s08b-rtp-table td {
  padding: 0.7rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid var(--s08b-border);
}
.s08b-rtp-table th { color: var(--s08b-accent); font-weight: 700; }
.s08b-rtp-table td { color: var(--s08b-text-dim); }
.s08b-rtp-pct { color: var(--s08b-primary); font-weight: 800; }

/* ---------------- Testimonials ---------------- */
.s08b-testi {
  background: var(--s08b-bg-card);
  border-left: 3px solid var(--s08b-primary);
  border-radius: var(--s08b-radius-sm);
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.9rem;
}
.s08b-testi p { font-size: 1.3rem; color: var(--s08b-text); margin-bottom: 0.5rem; font-style: italic; }
.s08b-testi-meta { font-size: 1.15rem; color: var(--s08b-accent); font-weight: 700; }
.s08b-stars { color: #FFD700; font-size: 1.2rem; }

/* ---------------- Winners ---------------- */
.s08b-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--s08b-bg-card);
  border-radius: var(--s08b-radius-sm);
  margin-bottom: 0.6rem;
  border: 1px solid var(--s08b-border);
}
.s08b-winner .s08b-w-name { font-size: 1.3rem; color: var(--s08b-accent-2); font-weight: 700; }
.s08b-winner .s08b-w-game { font-size: 1.15rem; color: var(--s08b-text-dim); }
.s08b-winner .s08b-w-amount { font-size: 1.4rem; color: var(--s08b-primary); font-weight: 800; }

/* ---------------- Payment / app ---------------- */
.s08b-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.s08b-pay-pill {
  background: var(--s08b-bg-card);
  border: 1px solid var(--s08b-border);
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  font-size: 1.2rem;
  color: var(--s08b-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.s08b-pay-pill i { color: var(--s08b-accent); }

.s08b-app-card {
  background: var(--s08b-gradient);
  border-radius: var(--s08b-radius);
  padding: 1.6rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1.4rem;
}
.s08b-app-card h2 { font-size: 1.9rem; margin-bottom: 0.6rem; color: #fff; }
.s08b-app-card p { font-size: 1.3rem; margin-bottom: 1.2rem; opacity: 0.95; }

/* ---------------- FAQ ---------------- */
.s08b-faq-item {
  background: var(--s08b-bg-card);
  border: 1px solid var(--s08b-border);
  border-radius: var(--s08b-radius-sm);
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.7rem;
}
.s08b-faq-item h3 { font-size: 1.4rem; color: var(--s08b-accent-2); margin-bottom: 0.5rem; }
.s08b-faq-item p { font-size: 1.3rem; color: var(--s08b-text-dim); }

/* ---------------- CTA strip ---------------- */
.s08b-cta {
  background: var(--s08b-gradient-cool);
  color: #0A0A0A;
  padding: 1.8rem 1.4rem;
  border-radius: var(--s08b-radius);
  text-align: center;
  margin: 1.6rem 0;
}
.s08b-cta h2 { font-size: 2rem; margin-bottom: 0.6rem; color: #0A0A0A; }
.s08b-cta p { font-size: 1.3rem; margin-bottom: 1.2rem; font-weight: 600; }

/* ---------------- Footer ---------------- */
.s08b-footer {
  background: var(--s08b-bg-soft);
  border-top: 1px solid var(--s08b-border);
  padding: 2.2rem 1.2rem 2rem;
}
.s08b-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.s08b-footer-brand img { width: 2.8rem; height: 2.8rem; border-radius: 8px; }
.s08b-footer-brand strong { font-size: 1.6rem; color: var(--s08b-text); }
.s08b-footer-desc { font-size: 1.25rem; color: var(--s08b-text-dim); margin-bottom: 1.2rem; }
.s08b-footer h4 {
  font-size: 1.35rem;
  color: var(--s08b-accent-2);
  margin: 1.2rem 0 0.6rem;
  font-weight: 700;
}
.s08b-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0.8rem;
  margin-bottom: 1.2rem;
}
.s08b-footer-links a {
  font-size: 1.2rem;
  color: var(--s08b-text-dim);
  padding: 0.3rem 0;
}
.s08b-footer-links a:hover { color: var(--s08b-primary); }
.s08b-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.2rem;
}
.s08b-footer-bottom {
  border-top: 1px solid var(--s08b-border);
  padding-top: 1rem;
  font-size: 1.15rem;
  color: var(--s08b-text-dim);
  text-align: center;
}

/* ---------------- Bottom navigation ---------------- */
.s08b-bnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: rgba(20, 20, 20, 0.98);
  border-top: 1px solid var(--s08b-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.s08b-bnav-btn {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--s08b-text-dim);
  cursor: pointer;
  padding: 0.3rem 0.1rem;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}
.s08b-bnav-btn:active { transform: scale(0.9); }
.s08b-bnav-btn .material-icons,
.s08b-bnav-btn i,
.s08b-bnav-btn ion-icon {
  font-size: 2.3rem;
}
.s08b-bnav-btn span {
  font-size: 1.05rem;
  font-weight: 600;
}
.s08b-bnav-btn.s08b-bnav-active { color: var(--s08b-primary); }
.s08b-bnav-btn.s08b-bnav-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 3px;
  background: var(--s08b-gradient);
  border-radius: 0 0 50px 50px;
}
.s08b-bnav-promo {
  color: var(--s08b-accent);
}

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

/* ---------------- Desktop ---------------- */
@media (min-width: 769px) {
  body { padding-bottom: 2rem; max-width: 880px; margin: 0 auto; }
  .s08b-bnav { display: none; }
  .s08b-container { max-width: 880px; }
}
