/* ============================================================
 * betso88 promotion - design-0936.css
 * Palette: #48D1CC (primary) | #1C2833 (dark bg) | #ADD8E6 (light text)
 * All custom classes use the s093- prefix per project spec.
 * Mobile-first: designed for max-width 430px and scales up.
 * ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --s093-primary: #48D1CC;
  --s093-primary-dark: #2BA8A4;
  --s093-primary-light: #7EE0DC;
  --s093-bg: #1C2833;
  --s093-bg-alt: #243447;
  --s093-bg-soft: #18222C;
  --s093-text: #ADD8E6;
  --s093-text-bright: #EAF6FA;
  --s093-text-muted: #8FA9B8;
  --s093-accent: #F4B740;
  --s093-accent-soft: #FFD773;
  --s093-danger: #FF6B6B;
  --s093-success: #4ADE80;
  --s093-border: rgba(72, 209, 204, 0.18);
  --s093-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  --s093-radius: 14px;
  --s093-radius-sm: 8px;
  --s093-header-h: 60px;
  --s093-bottom-nav-h: 62px;
  --s093-gradient-primary: linear-gradient(135deg, #48D1CC 0%, #2BA8A4 100%);
  --s093-gradient-dark: linear-gradient(160deg, #1C2833 0%, #0F1822 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: var(--s093-gradient-dark); color: var(--s093-text); line-height: 1.6;
  font-size: 1.5rem; padding-top: var(--s093-header-h); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--s093-primary); text-decoration: none; }
a:hover { color: var(--s093-primary-light); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--s093-text-bright); margin: 0 0 1rem; line-height: 1.25; }
h1 { font-size: 2.2rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.7rem; }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.s093-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.4rem; }
.s093-wrapper { width: 100%; }
.s093-section { padding: 2.4rem 0; border-bottom: 1px solid var(--s093-border); }
.s093-section-alt { background: rgba(72, 209, 204, 0.04); }
.s093-section-eyebrow {
  display: inline-block; font-size: 1.15rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--s093-primary-light); margin-bottom: 0.6rem;
}
.s093-section-head { margin-bottom: 1.6rem; }
.s093-text-lead { color: var(--s093-text-bright); font-size: 1.6rem; }
.s093-text-muted { color: var(--s093-text-muted); }
.s093-divider { height: 1px; background: var(--s093-border); margin: 1.8rem 0; }

/* ---------- Header ---------- */
.s093-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--s093-header-h); z-index: 1000;
  background: rgba(28, 40, 51, 0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--s093-border); transition: height 0.2s ease, background 0.2s ease;
}
.s093-header-compact { height: 52px; box-shadow: var(--s093-shadow); }
.s093-header-inner {
  height: 100%; max-width: 430px; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
}
.s093-brand { display: flex; align-items: center; gap: 0.7rem; color: var(--s093-text-bright); font-weight: 700; font-size: 1.55rem; }
.s093-brand img { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--s093-primary); }
.s093-brand-text { line-height: 1; }
.s093-brand-text span { display: block; font-size: 1.05rem; color: var(--s093-primary-light); font-weight: 500; }

/* ---------- Header actions / buttons ---------- */
.s093-actions { display: flex; align-items: center; gap: 0.45rem; }
.s093-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: none; border-radius: 999px; padding: 0.7rem 1.2rem; font-size: 1.3rem; font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease; min-height: 36px;
}
.s093-btn:active { transform: scale(0.96); }
.s093-btn-primary { background: var(--s093-gradient-primary); color: #08121A; box-shadow: 0 4px 12px rgba(72, 209, 204, 0.35); }
.s093-btn-primary:hover { color: #08121A; filter: brightness(1.05); }
.s093-btn-ghost { background: transparent; border: 1px solid var(--s093-primary); color: var(--s093-primary-light); }
.s093-btn-ghost:hover { background: rgba(72, 209, 204, 0.1); color: var(--s093-primary-light); }
.s093-btn-accent { background: linear-gradient(135deg, #F4B740, #E89C1A); color: #1C2833; }
.s093-btn-block { width: 100%; padding: 1rem; font-size: 1.5rem; }
.s093-menu-btn {
  background: transparent; border: 1px solid var(--s093-border); border-radius: 10px;
  width: 38px; height: 38px; color: var(--s093-primary-light);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem;
}

/* ---------- Mobile menu (slide-in) ---------- */
.s093-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 85%; max-width: 320px; height: 100vh;
  background: var(--s093-bg-alt); z-index: 9999; padding: 1.8rem 1.4rem; overflow-y: auto;
  transition: right 0.28s ease; border-left: 1px solid var(--s093-border);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.45);
}
.s093-mobile-menu.s093-menu-open { right: 0; }
.s093-menu-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); opacity: 0; visibility: hidden; transition: opacity 0.25s ease; z-index: 9998; }
.s093-menu-overlay.s093-overlay-show { opacity: 1; visibility: visible; }
.s093-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--s093-border); }
.s093-menu-title { color: var(--s093-text-bright); font-size: 1.6rem; font-weight: 700; }
.s093-menu-close { background: transparent; border: none; color: var(--s093-primary-light); font-size: 1.8rem; width: 36px; height: 36px; }
.s093-menu-link { display: flex; align-items: center; gap: 0.8rem; padding: 1rem; border-radius: 10px; color: var(--s093-text); font-size: 1.4rem; border-bottom: 1px solid var(--s093-border); }
.s093-menu-link:hover { background: rgba(72, 209, 204, 0.08); color: var(--s093-text-bright); }
.s093-menu-link i { color: var(--s093-primary); width: 22px; text-align: center; }

/* ---------- Carousel ---------- */
.s093-carousel { position: relative; margin: 1.4rem 0 1.8rem; border-radius: var(--s093-radius); overflow: hidden; box-shadow: var(--s093-shadow); }
.s093-carousel-track { position: relative; }
.s093-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.65s ease; pointer-events: none; }
.s093-slide.s093-slide-active { opacity: 1; position: relative; pointer-events: auto; }
.s093-slide img { width: 100%; height: 200px; object-fit: cover; cursor: pointer; }
.s093-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.9rem 1.2rem;
  background: linear-gradient(to top, rgba(15, 24, 34, 0.92), rgba(15, 24, 34, 0));
  color: var(--s093-text-bright); font-size: 1.3rem; font-weight: 600;
}
.s093-slide-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.s093-slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); border: none; padding: 0; cursor: pointer; }
.s093-slide-dot.s093-dot-active { background: var(--s093-primary); width: 22px; border-radius: 4px; }

/* ---------- Hero CTA strip ---------- */
.s093-hero-cta {
  background: var(--s093-gradient-primary); color: #08121A; border-radius: var(--s093-radius);
  padding: 1.2rem 1.4rem; margin: 1.4rem 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; box-shadow: 0 6px 18px rgba(72, 209, 204, 0.3);
}
.s093-hero-cta h2 { color: #08121A; font-size: 1.7rem; margin: 0; }
.s093-hero-cta p { margin: 0.2rem 0 0; font-size: 1.25rem; color: rgba(8, 18, 26, 0.85); }
.s093-hero-cta .s093-btn { background: #1C2833; color: var(--s093-primary-light); padding: 0.8rem 1.4rem; }

/* ---------- Game list / grid ---------- */
.s093-cat-block { margin-bottom: 2.2rem; }
.s093-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.s093-cat-title { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.7rem; color: var(--s093-text-bright); font-weight: 700; }
.s093-cat-title i { color: var(--s093-primary); font-size: 1.9rem; }
.s093-cat-count { color: var(--s093-text-muted); font-size: 1.2rem; }
.s093-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.s093-game-card {
  background: var(--s093-bg-alt); border: 1px solid var(--s093-border); border-radius: var(--s093-radius-sm);
  padding: 0.6rem; text-align: center; transition: transform 0.15s ease, border-color 0.2s ease; cursor: pointer;
}
.s093-game-card:hover { transform: translateY(-2px); border-color: var(--s093-primary); }
.s093-game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; margin-bottom: 0.4rem; }
.s093-game-name { font-size: 1.1rem; color: var(--s093-text-bright); font-weight: 600; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Info / feature cards ---------- */
.s093-info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.s093-card { background: var(--s093-bg-alt); border: 1px solid var(--s093-border); border-radius: var(--s093-radius); padding: 1.4rem; }
.s093-card-title { display: flex; align-items: center; gap: 0.6rem; font-size: 1.45rem; color: var(--s093-text-bright); margin-bottom: 0.6rem; }
.s093-card-title i { color: var(--s093-primary); }
.s093-card p { margin: 0; color: var(--s093-text); font-size: 1.35rem; }
.s093-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.s093-feature { background: var(--s093-bg-alt); border: 1px solid var(--s093-border); border-radius: var(--s093-radius-sm); padding: 1rem; text-align: center; }
.s093-feature .s093-feature-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(72, 209, 204, 0.15); color: var(--s093-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 0.5rem; }
.s093-feature h4 { font-size: 1.3rem; margin: 0 0 0.3rem; color: var(--s093-text-bright); }
.s093-feature p { margin: 0; font-size: 1.15rem; color: var(--s093-text-muted); }

/* ---------- Steps (How to Play) ---------- */
.s093-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.s093-step { position: relative; padding: 0.8rem 0 0.8rem 3.2rem; border-bottom: 1px dashed var(--s093-border); counter-increment: step; }
.s093-step:last-child { border-bottom: none; }
.s093-step::before {
  content: counter(step); position: absolute; left: 0; top: 0.8rem; width: 26px; height: 26px;
  background: var(--s093-gradient-primary); color: #08121A; border-radius: 50%; font-weight: 700; font-size: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.s093-step strong { color: var(--s093-text-bright); }

/* ---------- RTP compact table ---------- */
.s093-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; background: var(--s093-bg-alt); border-radius: var(--s093-radius-sm); overflow: hidden; }
.s093-rtp-table th, .s093-rtp-table td { padding: 0.7rem 0.8rem; text-align: left; border-bottom: 1px solid var(--s093-border); }
.s093-rtp-table th { background: rgba(72, 209, 204, 0.12); color: var(--s093-text-bright); font-size: 1.15rem; }
.s093-rtp-table td { color: var(--s093-text); }
.s093-rtp-pill { display: inline-block; padding: 0.15rem 0.6rem; border-radius: 999px; font-weight: 700; font-size: 1.1rem; background: rgba(74, 222, 128, 0.15); color: var(--s093-success); }

/* ---------- Testimonials ---------- */
.s093-testimonials { display: grid; gap: 0.9rem; }
.s093-testimonial { background: var(--s093-bg-alt); border-left: 3px solid var(--s093-primary); border-radius: var(--s093-radius-sm); padding: 1rem 1.2rem; }
.s093-testimonial-stars { color: var(--s093-accent); font-size: 1.2rem; margin-bottom: 0.3rem; }
.s093-testimonial p { margin: 0 0 0.5rem; font-size: 1.3rem; color: var(--s093-text); }
.s093-testimonial cite { font-style: normal; color: var(--s093-primary-light); font-size: 1.15rem; }

/* ---------- Chips / winners ---------- */
.s093-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.s093-chip { background: var(--s093-bg-alt); border: 1px solid var(--s093-border); border-radius: 999px; padding: 0.45rem 0.9rem; color: var(--s093-text-bright); font-size: 1.15rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.s093-chip i { color: var(--s093-primary); }
.s093-winner-list { display: grid; gap: 0.5rem; }
.s093-winner { display: flex; align-items: center; justify-content: space-between; background: var(--s093-bg-alt); border: 1px solid var(--s093-border); border-radius: var(--s093-radius-sm); padding: 0.7rem 1rem; font-size: 1.25rem; }
.s093-winner-name { color: var(--s093-text-bright); font-weight: 600; }
.s093-winner-game { color: var(--s093-text-muted); font-size: 1.1rem; }
.s093-winner-amount { color: var(--s093-accent); font-weight: 700; }

/* ---------- FAQ accordion ---------- */
.s093-faq-list { display: grid; gap: 0.6rem; }
.s093-faq-item { background: var(--s093-bg-alt); border: 1px solid var(--s093-border); border-radius: var(--s093-radius-sm); overflow: hidden; }
.s093-faq-toggle { width: 100%; text-align: left; background: transparent; border: none; padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: center; color: var(--s093-text-bright); font-size: 1.35rem; font-weight: 600; }
.s093-faq-toggle .s093-faq-icon { color: var(--s093-primary); transition: transform 0.2s ease; }
.s093-faq-item.s093-faq-open .s093-faq-icon { transform: rotate(45deg); }
.s093-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; padding: 0 1.2rem; color: var(--s093-text); font-size: 1.3rem; }
.s093-faq-item.s093-faq-open .s093-faq-body { max-height: 400px; padding: 0 1.2rem 1rem; }

/* ---------- Promo CTA banner ---------- */
.s093-cta-banner { background: linear-gradient(135deg, #F4B740 0%, #E89C1A 100%); color: #1C2833; border-radius: var(--s093-radius); padding: 1.4rem; margin: 1.6rem 0; text-align: center; }
.s093-cta-banner h3 { color: #1C2833; font-size: 1.8rem; margin-bottom: 0.4rem; }
.s093-cta-banner p { color: rgba(28, 40, 51, 0.85); margin-bottom: 1rem; }
.s093-cta-banner .s093-btn { background: #1C2833; color: var(--s093-primary-light); }

/* ---------- Footer ---------- */
.s093-footer { background: #0F1822; border-top: 1px solid var(--s093-border); padding: 2.2rem 0 calc(var(--s093-bottom-nav-h) + 2rem); margin-top: 1.6rem; }
.s093-footer .s093-container { padding: 0 1.4rem; }
.s093-footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.s093-footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.s093-footer-brand strong { color: var(--s093-text-bright); font-size: 1.5rem; }
.s093-footer-desc { color: var(--s093-text-muted); font-size: 1.25rem; margin-bottom: 1rem; }
.s093-footer-promos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin: 0.9rem 0; }
.s093-footer-promos .s093-btn { padding: 0.6rem 0.5rem; font-size: 1.15rem; }
.s093-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; margin: 1rem 0; }
.s093-footer-links a { color: var(--s093-text); font-size: 1.2rem; padding: 0.3rem 0; border-bottom: 1px dashed var(--s093-border); }
.s093-footer-links a:hover { color: var(--s093-primary-light); }
.s093-footer-copy { text-align: center; color: var(--s093-text-muted); font-size: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--s093-border); }

/* ---------- Mobile bottom navigation ---------- */
.s093-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--s093-bottom-nav-h);
  background: rgba(15, 24, 34, 0.98); backdrop-filter: blur(10px);
  border-top: 1px solid var(--s093-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000; padding-bottom: env(safe-area-inset-bottom, 0);
}
.s093-bottom-nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: transparent; border: none; color: var(--s093-text-muted); font-size: 1rem;
  padding: 0.4rem 0; min-width: 60px; transition: color 0.15s ease, transform 0.15s ease;
}
.s093-bottom-nav-btn:active { transform: scale(0.92); }
.s093-bottom-nav-btn .s093-bottom-icon { font-size: 2.1rem; line-height: 1; }
.s093-bottom-nav-btn .s093-bottom-label { font-size: 1rem; line-height: 1; }
.s093-bottom-nav-btn:hover { color: var(--s093-primary-light); }
.s093-bottom-nav-active { color: var(--s093-primary); }
.s093-bottom-nav-active .s093-bottom-icon { color: var(--s093-accent); }
.s093-bottom-nav-promo { position: relative; }
.s093-bottom-nav-promo::after {
  content: "HOT"; position: absolute; top: 4px; right: 12px; background: var(--s093-danger); color: #fff;
  font-size: 0.85rem; font-weight: 700; padding: 1px 5px; border-radius: 6px; letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .s093-bottom-nav { display: none; }
  .s093-footer { padding-bottom: 2.2rem; }
  .s093-container { max-width: 760px; }
  .s093-grid { grid-template-columns: repeat(5, 1fr); }
  .s093-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .s093-footer-promos { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 992px) {
  .s093-container { max-width: 960px; }
  .s093-grid { grid-template-columns: repeat(6, 1fr); }
  .s093-info-grid { grid-template-columns: repeat(2, 1fr); }
  .s093-slide img { height: 320px; }
}
@media (max-width: 768px) { main { padding-bottom: 80px; } }

/* ---------- Utility ---------- */
.s093-row { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.s093-row-between { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.s093-text-center { text-align: center; }
.s093-mt-1 { margin-top: 0.6rem; }
.s093-mt-2 { margin-top: 1.2rem; }
.s093-link-bold { color: var(--s093-primary); font-weight: 700; }
.s093-link-bold:hover { color: var(--s093-accent); }
