/* superking tablet - layout stylesheet */
/* All custom classes use the s756- prefix. Mobile-first design (max-width 430px). */

:root {
  --s756-primary: #FFAA00;
  --s756-primary-dark: #FF8C00;
  --s756-bg: #1A1A2E;
  --s756-bg-2: #20203a;
  --s756-bg-3: #2a2a4a;
  --s756-accent: #3CB371;
  --s756-warm: #FF8000;
  --s756-text: #ffffff;
  --s756-text-muted: #c9c9d8;
  --s756-border: rgba(255,170,0,0.25);
  --s756-radius: 12px;
  --s756-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  background: var(--s756-bg);
  color: var(--s756-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 80px;
}
a { color: var(--s756-primary); text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.8rem; }
h1, h2, h3, h4 { margin: 0 0 0.8rem; line-height: 1.25; }

/* ---- Layout containers ---- */
.s756-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.s756-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.s756-section { padding: 22px 0; }
.s756-section-title { font-size: 2.0rem; color: var(--s756-primary); margin-bottom: 8px; font-weight: 800; }
.s756-section-title .material-icons, .s756-section-title i { color: var(--s756-warm); margin-right: 6px; }
.s756-lead { color: var(--s756-text-muted); font-size: 1.5rem; margin-bottom: 10px; }

/* ---- Header ---- */
.s756-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(26,26,46,0.98), rgba(26,26,46,0.92));
  border-bottom: 1px solid var(--s756-border);
  backdrop-filter: blur(6px);
}
.s756-header-wrap { max-width: 430px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; min-height: 56px; }
.s756-logo { display: flex; align-items: center; gap: 8px; color: var(--s756-primary); font-weight: 800; font-size: 1.6rem; }
.s756-logo img { width: 28px; height: 28px; border-radius: 6px; }
.s756-logo .material-icons { font-size: 26px; color: var(--s756-warm); }
.s756-header-actions { display: flex; align-items: center; gap: 6px; }
.s756-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 36px; padding: 0 14px; border-radius: 999px;
  font-size: 1.3rem; font-weight: 700; cursor: pointer; border: none;
  background: var(--s756-primary); color: #1A1A2E; transition: transform .15s, box-shadow .15s;
}
.s756-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,170,0,0.4); }
.s756-btn-secondary { background: transparent; color: var(--s756-primary); border: 1px solid var(--s756-primary); }
.s756-btn-ghost { background: transparent; color: var(--s756-text); }
.s756-btn-block { display: flex; width: 100%; padding: 12px; font-size: 1.5rem; }
.s756-btn-lg { min-height: 48px; padding: 0 22px; font-size: 1.5rem; }
.s756-menu-toggle { background: transparent; border: none; color: var(--s756-primary); cursor: pointer; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.s756-menu-toggle i { font-size: 24px; }

/* ---- Mobile slide-down menu ---- */
.s756-menu-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9998; }
.s756-menu-backdrop.s756-show { display: block; }
#s756-mobile-menu { display: none; }
#s756-mobile-menu.s756-menu-open { display: block; }
.s756-mobile-menu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 9999;
  background: var(--s756-bg-2); border-bottom: 1px solid var(--s756-border);
  max-height: 70vh; overflow-y: auto; padding: 8px 14px 18px;
}
.s756-mobile-menu a {
  display: block; padding: 11px 6px; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--s756-text); font-size: 1.4rem; font-weight: 600;
}
.s756-mobile-menu a i { color: var(--s756-primary); margin-right: 8px; }
.s756-mobile-menu .s756-menu-promo { color: var(--s756-primary); }

/* ---- Hero / Carousel ---- */
.s756-hero { margin-top: 56px; }
.s756-carousel { position: relative; overflow: hidden; border-radius: 0 0 16px 16px; }
.s756-slides { position: relative; width: 100%; aspect-ratio: 16/9; }
.s756-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.s756-slide img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.s756-slide.s756-slide-active { opacity: 1; }
.s756-slide-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px; background: linear-gradient(180deg, transparent, rgba(26,26,46,0.92)); }
.s756-slide-overlay h2 { color: var(--s756-primary); font-size: 1.8rem; margin: 0 0 4px; }
.s756-slide-overlay p { color: var(--s756-text); font-size: 1.3rem; margin: 0; }
.s756-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0; }
.s756-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; }
.s756-dot.s756-dot-active { background: var(--s756-primary); }

/* ---- Promotional banner ---- */
.s756-promo-banner { display: flex; align-items: center; gap: 10px; background: linear-gradient(90deg, var(--s756-warm), var(--s756-primary)); color: #1A1A2E; padding: 10px 12px; border-radius: 10px; font-weight: 700; font-size: 1.35rem; margin: 12px 0; }
.s756-promo-banner i { font-size: 22px; }

/* ---- Game grid ---- */
.s756-cat-block { margin-bottom: 18px; }
.s756-cat-header { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 8px; }
.s756-cat-header h3 { font-size: 1.7rem; color: var(--s756-primary); display: flex; align-items: center; gap: 6px; font-weight: 700; }
.s756-cat-header h3 .material-icons, .s756-cat-header h3 i { font-size: 22px; color: var(--s756-warm); }
.s756-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.s756-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.s756-game { display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; }
.s756-game img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; border: 1px solid rgba(255,170,0,0.18); transition: transform .15s; }
.s756-game img:hover { transform: scale(1.04); border-color: var(--s756-primary); }
.s756-game-name { font-size: 1.05rem; color: var(--s756-text-muted); margin-top: 4px; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }

/* ---- Cards ---- */
.s756-card { background: var(--s756-bg-2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--s756-radius); padding: 14px; margin-bottom: 12px; box-shadow: var(--s756-shadow); }
.s756-card h3, .s756-card h4 { color: var(--s756-primary); }
.s756-card p { color: var(--s756-text-muted); margin: 0 0 6px; font-size: 1.4rem; }
.s756-feature-list { list-style: none; padding: 0; margin: 0; }
.s756-feature-list li { display: flex; gap: 8px; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); align-items: flex-start; }
.s756-feature-list li i { color: var(--s756-accent); margin-top: 2px; }
.s756-feature-list li:last-child { border-bottom: none; }

/* ---- RTP bars ---- */
.s756-rtp-row { margin-bottom: 10px; }
.s756-rtp-label { display: flex; justify-content: space-between; font-size: 1.3rem; margin-bottom: 4px; }
.s756-rtp-label span:last-child { color: var(--s756-primary); font-weight: 700; }
.s756-rtp-bar { height: 10px; background: var(--s756-bg-3); border-radius: 999px; overflow: hidden; }
.s756-rtp-fill { height: 100%; background: linear-gradient(90deg, var(--s756-accent), var(--s756-primary)); border-radius: 999px; }

/* ---- VIP / club tiers ---- */
.s756-tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.s756-tier { background: var(--s756-bg-2); border: 1px solid var(--s756-border); border-radius: 10px; padding: 10px; text-align: center; }
.s756-tier i { font-size: 26px; color: var(--s756-warm); }
.s756-tier h4 { font-size: 1.4rem; color: var(--s756-primary); margin: 4px 0 2px; }
.s756-tier p { font-size: 1.2rem; color: var(--s756-text-muted); margin: 0; }

/* ---- Payment chips ---- */
.s756-pay-row { display: flex; flex-wrap: wrap; gap: 8px; }
.s756-pay-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--s756-bg-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; padding: 6px 12px; font-size: 1.25rem; color: var(--s756-text); }
.s756-pay-chip i { color: var(--s756-accent); }

/* ---- Winners ---- */
.s756-winner { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.s756-winner img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.s756-winner .s756-winner-name { font-weight: 700; font-size: 1.3rem; }
.s756-winner .s756-winner-prize { color: var(--s756-primary); font-weight: 700; }
.s756-winner .s756-winner-game { color: var(--s756-text-muted); font-size: 1.2rem; }

/* ---- Testimonials ---- */
.s756-quote { background: var(--s756-bg-2); border-left: 3px solid var(--s756-primary); border-radius: 8px; padding: 10px 12px; margin-bottom: 10px; }
.s756-quote .s756-quote-stars { color: var(--s756-warm); font-size: 1.3rem; margin-bottom: 4px; }
.s756-quote p { margin: 0 0 6px; font-size: 1.35rem; color: var(--s756-text); }
.s756-quote .s756-quote-author { font-size: 1.2rem; color: var(--s756-text-muted); }

/* ---- App download CTA ---- */
.s756-app-cta { display: flex; align-items: center; gap: 12px; background: linear-gradient(90deg, var(--s756-bg-2), var(--s756-bg-3)); border: 1px solid var(--s756-border); border-radius: 14px; padding: 14px; margin-bottom: 14px; }
.s756-app-cta i.material-icons, .s756-app-cta .fas { font-size: 40px; color: var(--s756-primary); }
.s756-app-cta .s756-app-text h3 { color: var(--s756-primary); font-size: 1.6rem; margin: 0 0 2px; }
.s756-app-cta .s756-app-text p { color: var(--s756-text-muted); font-size: 1.25rem; margin: 0 0 6px; }
.s756-app-cta .s756-app-links { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- Play Now floating ---- */
.s756-playnow { display: flex; gap: 10px; margin: 12px 0; }
.s756-playnow .s756-btn { flex: 1; }

/* ---- FAQ accordion ---- */
.s756-faq { border-bottom: 1px solid rgba(255,255,255,0.08); }
.s756-faq summary { cursor: pointer; padding: 10px 4px; font-weight: 700; color: var(--s756-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.4rem; }
.s756-faq summary::-webkit-details-marker { display: none; }
.s756-faq[open] summary i { transform: rotate(180deg); }
.s756-faq p { color: var(--s756-text-muted); margin: 6px 0 10px; font-size: 1.35rem; }

/* ---- Security list ---- */
.s756-check-list { list-style: none; padding: 0; margin: 0; }
.s756-check-list li { display: flex; gap: 8px; padding: 8px 0; align-items: flex-start; color: var(--s756-text-muted); font-size: 1.35rem; }
.s756-check-list li i { color: var(--s756-accent); }

/* ---- Achievements ---- */
.s756-stat-row { display: flex; gap: 8px; flex-wrap: wrap; }
.s756-stat { flex: 1 1 45%; background: var(--s756-bg-2); border: 1px solid var(--s756-border); border-radius: 10px; padding: 10px; text-align: center; }
.s756-stat .s756-stat-num { font-size: 2.0rem; font-weight: 800; color: var(--s756-primary); }
.s756-stat .s756-stat-label { font-size: 1.2rem; color: var(--s756-text-muted); }

/* ---- Tricks ---- */
.s756-trick { display: flex; gap: 10px; margin-bottom: 10px; }
.s756-trick .s756-trick-num { background: var(--s756-primary); color: #1A1A2E; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; flex-shrink: 0; }
.s756-trick p { margin: 0; color: var(--s756-text-muted); font-size: 1.35rem; }

/* ---- Footer ---- */
.s756-footer { background: var(--s756-bg-2); border-top: 1px solid var(--s756-border); padding: 20px 0 10px; }
.s756-footer-brand { color: var(--s756-text-muted); font-size: 1.3rem; margin-bottom: 12px; line-height: 1.5; }
.s756-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.s756-footer-links { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 12px; }
.s756-footer-links a { color: var(--s756-text-muted); font-size: 1.25rem; }
.s756-footer-links a:hover { color: var(--s756-primary); }
.s756-copyright { color: var(--s756-text-muted); font-size: 1.2rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 10px; }

/* ---- Bottom nav ---- */
.s756-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: 62px; background: rgba(26,26,46,0.98);
  border-top: 1px solid var(--s756-border); display: flex;
  justify-content: space-around; align-items: center;
  backdrop-filter: blur(8px);
}
.s756-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px; background: transparent; border: none; color: var(--s756-text-muted);
  cursor: pointer; gap: 2px; padding: 4px; transition: color .15s, transform .15s;
}
.s756-nav-btn i, .s756-nav-btn .material-icons { font-size: 24px; }
.s756-nav-btn span { font-size: 1.05rem; }
.s756-nav-btn:active { transform: scale(0.92); }
.s756-nav-btn.s756-nav-active { color: var(--s756-primary); }
.s756-nav-btn.s756-nav-active i, .s756-nav-btn.s756-nav-active .material-icons { color: var(--s756-primary); }
.s756-nav-badge { position: absolute; top: 6px; right: 12px; background: var(--s756-warm); color: #1A1A2E; font-size: 0.95rem; border-radius: 999px; padding: 0 5px; }

/* ---- Desktop ---- */
@media (min-width: 769px) {
  .s756-bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .s756-container, .s756-wrapper, .s756-header-wrap, .s756-footer { max-width: 430px; }
}
@media (max-width: 768px) {
  .s756-hide-mobile { display: none; }
}