/* ===========================================================
   uu58 app - design-c054.css
   All custom classes use the sc05- prefix.
   Palette: #FFD700 (gold) | #FF9800 (orange) | #273746 (deep)
   Mobile first, max-width 430px.
   =========================================================== */

:root {
  --sc05-primary: #FFD700;
  --sc05-accent: #FF9800;
  --sc05-bg: #273746;
  --sc05-bg-2: #1c2733;
  --sc05-bg-3: #324654;
  --sc05-text: #f5f7fa;
  --sc05-text-muted: #b6c2cf;
  --sc05-danger: #ff4d4f;
  --sc05-success: #34d399;
  --sc05-radius: 12px;
  --sc05-shadow: 0 6px 18px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, "Roboto", Arial, sans-serif;
  background: var(--sc05-bg);
  color: var(--sc05-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------------- Layout ---------------- */
.sc05-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 12px; }
.sc05-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; padding-bottom: 84px; }

/* ---------------- Header ---------------- */
.sc05-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1c2733 0%, #273746 100%);
  border-bottom: 1px solid rgba(255,215,0,.25);
  box-shadow: var(--sc05-shadow);
}
.sc05-header-inner {
  max-width: 430px; margin: 0 auto; padding: 8px 12px;
  display: flex; align-items: center; gap: 8px; min-height: 56px;
}
.sc05-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--sc05-primary); font-size: 1.7rem; }
.sc05-logo img { width: 28px; height: 28px; border-radius: 6px; }
.sc05-logo span { white-space: nowrap; }
.sc05-menu-btn {
  margin-left: auto; background: transparent; border: 0; color: var(--sc05-primary);
  font-size: 2rem; cursor: pointer; padding: 6px 10px; border-radius: 8px;
}
.sc05-menu-btn:hover { background: rgba(255,215,0,.12); }
.sc05-header-actions { display: flex; gap: 6px; }
.sc05-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 1.3rem;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  min-height: 36px;
}
.sc05-btn:hover { transform: translateY(-1px); }
.sc05-btn-primary { background: linear-gradient(135deg, #FFD700, #FF9800); color: #1c2733; box-shadow: 0 4px 10px rgba(255,152,0,.4); }
.sc05-btn-ghost { background: transparent; color: var(--sc05-primary); border: 1px solid rgba(255,215,0,.6); }
.sc05-btn-block { display: flex; width: 100%; padding: 12px; font-size: 1.5rem; }

/* ---------------- Mobile dropdown menu ---------------- */
.sc05-mobile-menu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 9999;
  background: var(--sc05-bg-2); border-bottom: 1px solid rgba(255,215,0,.2);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  box-shadow: var(--sc05-shadow);
}
.sc05-mobile-menu.sc05-open { max-height: 80vh; overflow-y: auto; }
.sc05-mobile-menu ul { list-style: none; margin: 0; padding: 8px 12px; }
.sc05-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.06); }
.sc05-mobile-menu li:last-child { border-bottom: 0; }
.sc05-mobile-menu a {
  display: flex; align-items: center; gap: 10px; padding: 12px 6px;
  color: var(--sc05-text); font-weight: 600;
}
.sc05-mobile-menu a:hover { color: var(--sc05-primary); padding-left: 12px; }
.sc05-mobile-menu .sc05-menu-cta { margin: 10px 0; display: flex; gap: 8px; }

/* ---------------- Hero / Carousel ---------------- */
.sc05-hero { margin-top: 64px; padding: 12px 0 0; }
.sc05-carousel { position: relative; border-radius: var(--sc05-radius); overflow: hidden; box-shadow: var(--sc05-shadow); }
.sc05-slide { position: relative; display: none; cursor: pointer; }
.sc05-slide.sc05-active { display: block; }
.sc05-slide img { width: 100%; height: 180px; object-fit: cover; }
.sc05-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px;
  background: linear-gradient(0deg, rgba(28,39,51,.92), transparent);
  color: #fff; font-weight: 700; font-size: 1.5rem;
}
.sc05-slide-caption small { display: block; color: var(--sc05-primary); font-weight: 600; font-size: 1.1rem; margin-top: 2px; }
.sc05-dots { position: absolute; bottom: 8px; right: 12px; display: flex; gap: 6px; }
.sc05-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); border: 0; cursor: pointer; padding: 0; }
.sc05-dot.sc05-active { background: var(--sc05-primary); width: 18px; border-radius: 4px; }

/* ---------------- Sections ---------------- */
.sc05-section { padding: 18px 0; }
.sc05-section-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.sc05-section-head h2 { font-size: 1.7rem; color: var(--sc05-primary); margin: 0; }
.sc05-section-head .material-icons-outlined { color: var(--sc05-accent); font-size: 22px; }
.sc05-section-head a { margin-left: auto; font-size: 1.2rem; color: var(--sc05-text-muted); }
.sc05-lead { color: var(--sc05-text-muted); margin: 0 0 12px; }

/* ---------------- Filter chips ---------------- */
.sc05-chips { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px; -webkit-overflow-scrolling: touch; }
.sc05-chip {
  flex: 0 0 auto; padding: 6px 14px; border-radius: 999px;
  background: var(--sc05-bg-3); color: var(--sc05-text-muted);
  font-size: 1.2rem; font-weight: 600; cursor: pointer; border: 1px solid transparent;
}
.sc05-chip.sc05-chip-active { background: linear-gradient(135deg, #FFD700, #FF9800); color: #1c2733; border-color: transparent; }

/* ---------------- Game grid ---------------- */
.sc05-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sc05-game-tile {
  background: var(--sc05-bg-3); border-radius: 10px; overflow: hidden;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid rgba(255,255,255,.04); text-align: center;
}
.sc05-game-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,.35); border-color: rgba(255,215,0,.35); }
.sc05-game-tile img { width: 100%; height: 86px; object-fit: cover; }
.sc05-game-tile .sc05-game-name { display: block; padding: 6px 4px; font-size: 1.1rem; color: var(--sc05-text); line-height: 1.25rem; min-height: 32px; }

/* ---------------- Cards / generic ---------------- */
.sc05-card { background: var(--sc05-bg-3); border-radius: var(--sc05-radius); padding: 14px; margin-bottom: 12px; box-shadow: var(--sc05-shadow); }
.sc05-card h3 { margin: 0 0 8px; font-size: 1.5rem; color: var(--sc05-primary); }
.sc05-card p { margin: 0 0 8px; color: var(--sc05-text-muted); }
.sc05-card ul { margin: 0; padding-left: 18px; color: var(--sc05-text-muted); }
.sc05-card li { margin-bottom: 4px; }
.sc05-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.sc05-feature {
  background: var(--sc05-bg-2); border-radius: 10px; padding: 12px; text-align: center;
  border: 1px solid rgba(255,215,0,.08);
}
.sc05-feature .material-icons, .sc05-feature .bi { font-size: 26px; color: var(--sc05-accent); }
.sc05-feature h4 { margin: 6px 0 4px; font-size: 1.25rem; color: var(--sc05-text); }
.sc05-feature p { margin: 0; font-size: 1.1rem; color: var(--sc05-text-muted); }

/* ---------------- RTP table ---------------- */
.sc05-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.sc05-table th, .sc05-table td { padding: 8px 6px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
.sc05-table th { color: var(--sc05-primary); font-weight: 700; }
.sc05-table td .sc05-bar { display: inline-block; height: 6px; border-radius: 4px; background: linear-gradient(90deg, #FFD700, #FF9800); }

/* ---------------- Testimonials ---------------- */
.sc05-testimonial { background: var(--sc05-bg-2); border-radius: 10px; padding: 12px; margin-bottom: 10px; border-left: 3px solid var(--sc05-accent); }
.sc05-testimonial .sc05-stars { color: var(--sc05-primary); font-size: 1.2rem; margin-bottom: 4px; }
.sc05-testimonial p { margin: 0 0 6px; color: var(--sc05-text); }
.sc05-testimonial small { color: var(--sc05-text-muted); }

/* ---------------- Winners strip ---------------- */
.sc05-winner { display: flex; align-items: center; gap: 10px; padding: 8px; border-bottom: 1px dashed rgba(255,255,255,.08); }
.sc05-winner img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.sc05-winner .sc05-winner-name { font-weight: 700; color: var(--sc05-text); }
.sc05-winner .sc05-winner-amount { margin-left: auto; color: var(--sc05-primary); font-weight: 800; }

/* ---------------- Payment methods ---------------- */
.sc05-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sc05-pay { background: #fff; color: #1c2733; border-radius: 8px; padding: 8px; text-align: center; font-weight: 800; font-size: 1.15rem; }

/* ---------------- CTA banner ---------------- */
.sc05-cta {
  background: linear-gradient(135deg, #FF9800, #FFD700);
  color: #1c2733; border-radius: var(--sc05-radius); padding: 16px; text-align: center; margin: 14px 0;
  box-shadow: 0 8px 18px rgba(255,152,0,.35);
}
.sc05-cta h3 { margin: 0 0 6px; font-size: 1.7rem; }
.sc05-cta p { margin: 0 0 10px; font-weight: 600; }

/* ---------------- Footer ---------------- */
.sc05-footer { background: var(--sc05-bg-2); border-top: 1px solid rgba(255,215,0,.18); padding: 18px 0 12px; }
.sc05-footer-brand { color: var(--sc05-text-muted); font-size: 1.25rem; margin: 0 0 10px; }
.sc05-footer-links { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 10px; }
.sc05-footer-links a { color: var(--sc05-text-muted); font-size: 1.2rem; }
.sc05-footer-links a:hover { color: var(--sc05-primary); }
.sc05-footer-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 12px; }
.sc05-copy { color: var(--sc05-text-muted); font-size: 1.1rem; text-align: center; }

/* ---------------- Mobile bottom nav ---------------- */
.sc05-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1c2733, #131c25);
  border-top: 1px solid rgba(255,215,0,.22);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 60px; padding: 4px 0;
}
.sc05-bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--sc05-text-muted); font-size: 1rem; gap: 2px; min-width: 60px; min-height: 56px;
  transition: color .15s ease, transform .15s ease;
}
.sc05-bottom-nav a:hover { color: var(--sc05-primary); transform: translateY(-1px); }
.sc05-bottom-nav a.sc05-active { color: var(--sc05-primary); }
.sc05-bottom-nav a.sc05-nav-promo { color: var(--sc05-accent); }
.sc05-bottom-nav a .material-icons, .sc05-bottom-nav a .bi, .sc05-bottom-nav a ion-icon { font-size: 22px; }
.sc05-bottom-nav a .fas, .sc05-bottom-nav a .far { font-size: 20px; }
.sc05-bottom-nav a .sc05-badge {
  position: absolute; transform: translate(8px, -10px); background: var(--sc05-danger); color: #fff;
  font-size: .9rem; padding: 1px 5px; border-radius: 999px;
}

/* ---------------- Desktop hide / show helpers ---------------- */
@media (min-width: 769px) {
  .sc05-bottom-nav { display: none; }
  .sc05-container { max-width: 720px; }
  main { padding-bottom: 24px; }
}

/* ---------------- Accessibility ---------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--sc05-primary); outline-offset: 2px; }
