/*!
 * f16886.click - Core Stylesheet
 * All custom class names use the "sc07-" prefix.
 * Palette: #2F2F2F (charcoal) | #2C3E50 (deep slate) | #E5E5E5 (soft silver)
 * Mobile-first: layout is built for max-width 430px and progressively enhanced.
 */

:root {
  --sc07-bg: #2F2F2F;
  --sc07-bg-2: #2C3E50;
  --sc07-bg-3: #243240;
  --sc07-text: #E5E5E5;
  --sc07-text-soft: #c9c9c9;
  --sc07-text-muted: #8b97a3;
  --sc07-accent: #f0b429;
  --sc07-accent-2: #e67e22;
  --sc07-accent-3: #2ecc71;
  --sc07-card: #3a3a3a;
  --sc07-card-2: #324353;
  --sc07-border: rgba(229, 229, 229, 0.12);
  --sc07-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --sc07-radius: 12px;
  --sc07-radius-lg: 18px;
  --sc07-header-h: 56px;
  --sc07-bottom-h: 62px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--sc07-bg);
  color: var(--sc07-text);
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--sc07-accent); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: #fff; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.65rem; }
p { line-height: 1.5rem; }

/* ---- Layout helpers ---- */
.sc07-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.sc07-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.sc07-section { padding: 2rem 0; }
.sc07-section--alt { background: var(--sc07-bg-2); }
.sc07-section-title {
  font-size: 1.8rem; color: #fff; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.sc07-section-title::before {
  content: ""; width: 4px; height: 1.6rem; background: var(--sc07-accent);
  border-radius: 2px;
}
.sc07-text-accent { color: var(--sc07-accent); font-weight: 700; }
.sc07-text-muted { color: var(--sc07-text-muted); font-size: 1.3rem; }
.sc07-divider { height: 1px; background: var(--sc07-border); margin: 1.5rem 0; }

/* ---- Header ---- */
.sc07-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--sc07-header-h);
  background: linear-gradient(180deg, #243240 0%, #2C3E50 100%);
  border-bottom: 1px solid var(--sc07-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.sc07-header-inner {
  max-width: 430px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem;
}
.sc07-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.sc07-brand-logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--sc07-accent) 0%, var(--sc07-accent-2) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #2C3E50; font-weight: 800; font-size: 1.4rem;
}
.sc07-brand-name { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.sc07-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.sc07-menu-toggle {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: var(--sc07-text);
  font-size: 2rem; line-height: 1;
}
.sc07-menu-toggle.sc07-is-active { background: var(--sc07-accent); color: #2C3E50; }

.sc07-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-weight: 700; font-size: 1.35rem; padding: 0.7rem 1.2rem;
  border-radius: 10px; transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 38px; cursor: pointer; text-align: center;
}
.sc07-btn:active { transform: scale(0.96); }
.sc07-btn--login {
  background: transparent; color: var(--sc07-text);
  border: 1px solid rgba(255,255,255,0.25);
}
.sc07-btn--register {
  background: linear-gradient(135deg, var(--sc07-accent) 0%, var(--sc07-accent-2) 100%);
  color: #2C3E50;
}
.sc07-btn--ghost {
  background: rgba(255,255,255,0.06); color: var(--sc07-text);
  border: 1px solid var(--sc07-border);
}
.sc07-btn--block { width: 100%; padding: 1rem; font-size: 1.5rem; }
.sc07-btn--lg { padding: 1rem 1.6rem; font-size: 1.55rem; }

/* ---- Mobile expandable menu ---- */
.sc07-mobile-menu {
  position: fixed; top: var(--sc07-header-h); left: 0; right: 0; bottom: 0;
  background: rgba(20, 25, 32, 0.98);
  backdrop-filter: blur(8px);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  padding: 1.2rem;
}
.sc07-mobile-menu.sc07-is-active { transform: translateX(0); }
.sc07-mobile-menu h4 {
  font-size: 1.3rem; color: var(--sc07-text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin: 1.2rem 0 0.6rem;
}
.sc07-mobile-menu a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 0.6rem; border-bottom: 1px solid var(--sc07-border);
  color: var(--sc07-text); font-size: 1.5rem; font-weight: 600;
}
.sc07-mobile-menu a:active { color: var(--sc07-accent); }
.sc07-mobile-menu a i { color: var(--sc07-accent); font-size: 1.8rem; width: 24px; text-align: center; }
.sc07-mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.2rem; }

/* ---- Hero / Slider ---- */
.sc07-hero { padding-top: calc(var(--sc07-header-h) + 1rem); }
.sc07-slider {
  position: relative; width: 100%; height: 180px;
  border-radius: var(--sc07-radius-lg); overflow: hidden;
  box-shadow: var(--sc07-shadow);
}
.sc07-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease;
  display: flex; align-items: flex-end;
}
.sc07-slide.sc07-is-active { opacity: 1; }
.sc07-slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sc07-slide-overlay {
  position: relative; z-index: 2;
  padding: 1rem; width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}
.sc07-slide-title { color: #fff; font-size: 1.7rem; font-weight: 800; margin-bottom: 0.3rem; }
.sc07-slide-desc { color: var(--sc07-text-soft); font-size: 1.25rem; }
.sc07-slider-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.sc07-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: all 0.2s;
}
.sc07-dot.sc07-is-active { background: var(--sc07-accent); width: 22px; border-radius: 4px; }

/* ---- Category chips ---- */
.sc07-chips {
  display: flex; gap: 0.5rem; overflow-x: auto; padding: 1rem 0;
  scrollbar-width: none;
}
.sc07-chips::-webkit-scrollbar { display: none; }
.sc07-chip {
  flex: 0 0 auto; padding: 0.6rem 1.1rem; border-radius: 20px;
  background: var(--sc07-card); color: var(--sc07-text-soft);
  font-size: 1.3rem; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--sc07-border);
}
.sc07-chip.sc07-is-active {
  background: linear-gradient(135deg, var(--sc07-accent), var(--sc07-accent-2));
  color: #2C3E50;
}

/* ---- Game grid ---- */
.sc07-game-section { margin-bottom: 2rem; }
.sc07-game-section-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem;
}
.sc07-game-section-head h2 { font-size: 1.6rem; display: flex; align-items: center; gap: 0.5rem; }
.sc07-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
}
.sc07-game-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--sc07-card); border-radius: var(--sc07-radius);
  padding: 0.5rem; border: 1px solid var(--sc07-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.sc07-game-card:active { transform: scale(0.95); }
.sc07-game-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px;
  margin-bottom: 0.4rem;
}
.sc07-game-card-name {
  font-size: 1.15rem; color: var(--sc07-text);
  line-height: 1.3; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  min-height: 3rem;
}

/* ---- Info / feature cards ---- */
.sc07-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.sc07-card {
  background: var(--sc07-card); border: 1px solid var(--sc07-border);
  border-radius: var(--sc07-radius-lg); padding: 1.3rem;
}
.sc07-card h3 { font-size: 1.55rem; margin-bottom: 0.5rem; color: #fff; }
.sc07-card p { color: var(--sc07-text-soft); font-size: 1.35rem; line-height: 1.5; }
.sc07-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(240,180,41,0.15); color: var(--sc07-accent);
  font-size: 2.2rem; margin-bottom: 0.7rem;
}

/* ---- Stats / RTP table ---- */
.sc07-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.sc07-stat {
  background: var(--sc07-card); border-radius: var(--sc07-radius);
  padding: 1rem; text-align: center; border: 1px solid var(--sc07-border);
}
.sc07-stat-num { font-size: 2rem; font-weight: 800; color: var(--sc07-accent); }
.sc07-stat-label { font-size: 1.2rem; color: var(--sc07-text-muted); margin-top: 0.2rem; }
.sc07-rtp-list { display: grid; gap: 0.5rem; }
.sc07-rtp-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem; background: var(--sc07-card);
  border-radius: 8px; border: 1px solid var(--sc07-border);
  font-size: 1.35rem;
}
.sc07-rtp-bar {
  flex: 1; height: 6px; margin: 0 0.8rem; border-radius: 3px;
  background: rgba(255,255,255,0.1); overflow: hidden;
}
.sc07-rtp-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--sc07-accent), var(--sc07-accent-2));
}
.sc07-rtp-val { font-weight: 700; color: var(--sc07-accent); min-width: 50px; text-align: right; }

/* ---- Testimonials ---- */
.sc07-testimonials { display: grid; gap: 0.8rem; }
.sc07-testimonial {
  background: var(--sc07-card); border-radius: var(--sc07-radius);
  padding: 1.1rem; border-left: 3px solid var(--sc07-accent);
}
.sc07-testimonial-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.sc07-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sc07-accent), var(--sc07-accent-2));
  color: #2C3E50; font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.sc07-stars { color: var(--sc07-accent); font-size: 1.2rem; }
.sc07-testimonial p { font-size: 1.3rem; color: var(--sc07-text-soft); }

/* ---- Winners ---- */
.sc07-winner-list { display: grid; gap: 0.5rem; }
.sc07-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem; background: var(--sc07-card);
  border-radius: 8px; border: 1px solid var(--sc07-border); font-size: 1.3rem;
}
.sc07-winner-amount { color: var(--sc07-accent-3); font-weight: 800; }

/* ---- Payment methods ---- */
.sc07-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.sc07-pay-item {
  background: var(--sc07-card); border-radius: 8px; padding: 0.8rem;
  border: 1px solid var(--sc07-border); text-align: center;
  font-size: 1.2rem; color: var(--sc07-text-soft); font-weight: 600;
}
.sc07-pay-item i { font-size: 2rem; color: var(--sc07-accent); display: block; margin-bottom: 0.3rem; }

/* ---- App download CTA ---- */
.sc07-app-cta {
  background: linear-gradient(135deg, var(--sc07-bg-2) 0%, var(--sc07-bg-3) 100%);
  border-radius: var(--sc07-radius-lg); padding: 1.5rem; text-align: center;
  border: 1px solid var(--sc07-border);
}
.sc07-app-cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.5rem; }
.sc07-app-cta p { color: var(--sc07-text-soft); font-size: 1.3rem; margin-bottom: 1rem; }
.sc07-app-buttons { display: flex; flex-direction: column; gap: 0.5rem; }

/* ---- FAQ accordion ---- */
.sc07-faq-item {
  background: var(--sc07-card); border: 1px solid var(--sc07-border);
  border-radius: var(--sc07-radius); margin-bottom: 0.6rem; overflow: hidden;
}
.sc07-faq-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; font-weight: 700; font-size: 1.4rem; color: #fff;
}
.sc07-faq-header i { color: var(--sc07-accent); transition: transform 0.2s; }
.sc07-faq-item.sc07-is-open .sc07-faq-header i { transform: rotate(45deg); }
.sc07-faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.2rem;
}
.sc07-faq-item.sc07-is-open .sc07-faq-body { max-height: 600px; padding-bottom: 1rem; }
.sc07-faq-body p { color: var(--sc07-text-soft); font-size: 1.3rem; line-height: 1.5; }

/* ---- Steps (How to Play) ---- */
.sc07-steps { display: grid; gap: 0.8rem; counter-reset: step; }
.sc07-step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--sc07-card); border-radius: var(--sc07-radius);
  padding: 1rem; border: 1px solid var(--sc07-border);
}
.sc07-step-num {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sc07-accent), var(--sc07-accent-2));
  color: #2C3E50; font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.sc07-step h4 { font-size: 1.4rem; color: #fff; margin-bottom: 0.2rem; }
.sc07-step p { font-size: 1.3rem; color: var(--sc07-text-soft); }

/* ---- CTA banner ---- */
.sc07-cta-banner {
  background: linear-gradient(135deg, var(--sc07-accent) 0%, var(--sc07-accent-2) 100%);
  border-radius: var(--sc07-radius-lg); padding: 1.5rem; text-align: center;
  color: #2C3E50; margin: 1.5rem 0;
}
.sc07-cta-banner h3 { color: #2C3E50; font-size: 1.8rem; margin-bottom: 0.4rem; }
.sc07-cta-banner p { font-size: 1.3rem; margin-bottom: 1rem; color: #2C3E50; }
.sc07-cta-banner .sc07-btn {
  background: #2C3E50; color: #fff; font-size: 1.5rem; padding: 0.9rem 1.6rem;
}

/* ---- Inline promo links inside content ---- */
.sc07-inline-link {
  color: var(--sc07-accent); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed var(--sc07-accent);
}
.sc07-inline-link:active { color: var(--sc07-accent-2); }

/* ---- Footer ---- */
.sc07-footer {
  background: #1c2530; color: var(--sc07-text-soft);
  padding: 2rem 0 calc(var(--sc07-bottom-h) + 2rem);
  border-top: 1px solid var(--sc07-border);
}
.sc07-footer-brand { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.sc07-footer-desc { font-size: 1.3rem; line-height: 1.5; margin-bottom: 1.2rem; color: var(--sc07-text-muted); }
.sc07-footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.8rem; margin-bottom: 1.2rem;
}
.sc07-footer-links a {
  color: var(--sc07-text-soft); font-size: 1.25rem;
  padding: 0.3rem 0; border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.sc07-footer-links a:active { color: var(--sc07-accent); }
.sc07-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.sc07-footer-promos .sc07-btn { font-size: 1.25rem; padding: 0.5rem 0.9rem; min-height: 32px; }
.sc07-footer-copy {
  font-size: 1.15rem; color: var(--sc07-text-muted); text-align: center;
  border-top: 1px solid var(--sc07-border); padding-top: 1rem;
}

/* ---- Mobile bottom navigation ---- */
.sc07-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--sc07-bottom-h);
  background: linear-gradient(180deg, #2C3E50 0%, #1f2b38 100%);
  border-top: 1px solid var(--sc07-border);
  display: flex; align-items: stretch; justify-content: space-around;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
}
.sc07-bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--sc07-text-muted); font-size: 1.05rem; font-weight: 600;
  text-decoration: none; position: relative; min-width: 60px; min-height: 60px;
  transition: color 0.2s;
}
.sc07-bottom-nav-item i { font-size: 2.2rem; line-height: 1; }
.sc07-bottom-nav-item.sc07-is-active { color: var(--sc07-accent); }
.sc07-bottom-nav-item.sc07-is-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px; border-radius: 0 0 3px 3px; background: var(--sc07-accent);
}
.sc07-bottom-nav-item:active { color: var(--sc07-accent); transform: scale(0.92); }
.sc07-bottom-nav-item.sc07-nav-promo {
  color: #fff;
}
.sc07-bottom-nav-item.sc07-nav-promo i {
  background: linear-gradient(135deg, var(--sc07-accent), var(--sc07-accent-2));
  color: #2C3E50; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  margin-top: -22px; box-shadow: 0 4px 10px rgba(240,180,41,0.4);
  border: 3px solid #2C3E50;
}

/* ---- Reveal on scroll ---- */
.sc07-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.sc07-reveal.sc07-is-visible { opacity: 1; transform: translateY(0); }

/* ---- Desktop: hide bottom nav and widen layout ---- */
@media (min-width: 769px) {
  .sc07-bottom-nav { display: none; }
  .sc07-container, .sc07-wrapper, .sc07-header-inner, .sc07-footer .sc07-container { max-width: 760px; }
  .sc07-slider { height: 320px; }
  .sc07-game-grid { grid-template-columns: repeat(5, 1fr); }
  .sc07-stats { grid-template-columns: repeat(4, 1fr); }
  .sc07-pay-grid { grid-template-columns: repeat(6, 1fr); }
  .sc07-cards { grid-template-columns: 1fr 1fr; }
}

/* ---- Mobile bottom padding for fixed nav clearance ---- */
@media (max-width: 768px) {
  main.sc07-main, .sc07-footer { padding-bottom: calc(var(--sc07-bottom-h) + 1.5rem); }
  .sc07-footer { padding-bottom: calc(var(--sc07-bottom-h) + 2rem); }
}
