/* ============================================================
 * black scatter - style.css
 * All custom classes use the "scc6-" prefix for namespacing.
 * Color palette: #FFCCCB | #3A3A3A | #FF69B4 | #BAFFC9
 * Dark tones are backgrounds; light tones are text.
 * Mobile-first: tuned for max-width 430px viewports.
 * ============================================================ */

:root {
  --scc6-primary: #FF69B4;        /* hot pink - accent */
  --scc6-bg: #3A3A3A;             /* dark gray - background */
  --scc6-text: #FFCCCB;           /* light pink - body text */
  --scc6-mint: #BAFFC9;           /* light green - success */
  --scc6-bg-deep: #2a2a2a;        /* deeper surface */
  --scc6-bg-card: #454545;        /* card surface */
  --scc6-line: rgba(255, 204, 203, 0.18);
  --scc6-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  --scc6-radius: 14px;
  --scc6-radius-sm: 10px;
  --scc6-header-h: 60px;
  --scc6-bottom-h: 62px;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--scc6-bg);
  color: var(--scc6-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  padding-top: var(--scc6-header-h);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--scc6-primary); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
main { display: block; }

.scc6-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.4rem; }
.scc6-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* === Header === */
.scc6-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--scc6-header-h);
  background: linear-gradient(135deg, #1f1f1f, var(--scc6-bg));
  border-bottom: 1px solid var(--scc6-line);
  z-index: 1000;
  display: flex; align-items: center;
}
.scc6-header-inner {
  width: 100%; max-width: 430px; margin: 0 auto;
  padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
}
.scc6-brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--scc6-text); flex: 1; min-width: 0;
}
.scc6-brand img { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--scc6-primary); }
.scc6-brand-name {
  font-size: 1.7rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--scc6-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.scc6-brand-name span { color: var(--scc6-primary); }

.scc6-header-actions { display: flex; align-items: center; gap: 0.45rem; }

.scc6-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 36px; padding: 0 1rem;
  border: none; border-radius: 20px;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  background: var(--scc6-primary); color: #1d1d1d;
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.scc6-btn:hover { transform: translateY(-1px); text-decoration: none; box-shadow: 0 6px 16px rgba(255,105,180,0.35); }
.scc6-btn-secondary { background: transparent; color: var(--scc6-text); border: 1px solid var(--scc6-primary); }
.scc6-btn-mint { background: var(--scc6-mint); color: #1d3a23; }
.scc6-btn-block { width: 100%; min-height: 44px; font-size: 1.5rem; border-radius: 12px; }

.scc6-menu-toggle {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--scc6-line); background: var(--scc6-bg-deep);
  color: var(--scc6-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.6rem;
}

/* === Mobile slide-down menu === */
.scc6-mobile-menu {
  position: fixed; top: var(--scc6-header-h); left: 0; right: 0;
  background: var(--scc6-bg-deep);
  border-bottom: 1px solid var(--scc6-line);
  transform: translateY(-130%);
  transition: transform .28s ease;
  z-index: 9999;
  padding: 0.8rem 1.4rem 1.4rem;
  max-height: calc(100vh - var(--scc6-header-h));
  overflow-y: auto;
  pointer-events: none;
}
.scc6-mobile-menu.scc6-is-open { transform: translateY(0); pointer-events: auto; }
.scc6-mobile-menu h4 {
  margin: 1.1rem 0 0.5rem; font-size: 1.15rem; color: var(--scc6-mint);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.scc6-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.scc6-mobile-menu li a {
  display: block; padding: 0.85rem 0.4rem;
  color: var(--scc6-text); font-size: 1.35rem;
  border-bottom: 1px dashed var(--scc6-line);
}
.scc6-mobile-menu li a:hover { color: var(--scc6-primary); }
.scc6-no-scroll { overflow: hidden; }

/* === Hero === */
.scc6-hero { padding: 1rem 0 0.4rem; }
.scc6-hero h1 {
  font-size: 2.3rem; line-height: 1.25; font-weight: 800;
  color: var(--scc6-text); margin: 0 0 0.5rem;
}
.scc6-hero h1 span { color: var(--scc6-primary); }
.scc6-hero p { font-size: 1.3rem; color: var(--scc6-text); opacity: 0.9; margin: 0; }

/* === Hero carousel === */
.scc6-carousel {
  position: relative; margin: 1rem 0;
  border-radius: var(--scc6-radius); overflow: hidden;
  box-shadow: var(--scc6-shadow);
}
.scc6-slides { position: relative; }
.scc6-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
  display: flex; align-items: flex-end;
}
.scc6-slide.scc6-is-active { opacity: 1; position: relative; }
.scc6-slide img { width: 100%; height: 180px; object-fit: cover; cursor: pointer; }
.scc6-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
  color: #fff; font-size: 1.4rem; font-weight: 700;
}
.scc6-slide-caption small { display: block; font-weight: 400; opacity: 0.9; font-size: 1.1rem; }
.scc6-dots {
  position: absolute; bottom: 8px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 6px;
}
.scc6-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; border: none;
  transition: all .2s;
}
.scc6-dot.scc6-is-active { background: var(--scc6-primary); width: 18px; border-radius: 4px; }

/* === Sections === */
.scc6-section { padding: 1.8rem 0; }
.scc6-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.scc6-section-title { font-size: 1.9rem; font-weight: 800; color: var(--scc6-text); margin: 0; }
.scc6-section-title span { color: var(--scc6-primary); }
.scc6-section-sub { font-size: 1.2rem; color: var(--scc6-mint); margin-top: 0.3rem; }
.scc6-cat-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--scc6-bg-deep);
  border-left: 3px solid var(--scc6-primary);
  padding: 0.5rem 0.9rem;
  font-size: 1.3rem; font-weight: 700; color: var(--scc6-text);
  border-radius: 4px; margin: 1.6rem 0 1rem; text-transform: capitalize;
}

/* === Game grid === */
.scc6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.scc6-game-card {
  background: var(--scc6-bg-card);
  border-radius: var(--scc6-radius-sm);
  overflow: hidden; cursor: pointer;
  position: relative;
  display: block; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.scc6-game-card:hover, .scc6-game-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,105,180,0.25);
  text-decoration: none;
}
.scc6-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #222; }
.scc6-game-name {
  font-size: 1.15rem; font-weight: 600;
  padding: 0.5rem 0.4rem; text-align: center; color: var(--scc6-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.scc6-game-tag {
  position: absolute; top: 5px; left: 5px;
  background: var(--scc6-primary); color: #1d1d1d;
  font-size: 0.95rem; font-weight: 700;
  padding: 2px 6px; border-radius: 6px;
}

/* === Info cards === */
.scc6-card {
  background: var(--scc6-bg-card);
  border-radius: var(--scc6-radius);
  padding: 1.4rem; margin-bottom: 1rem;
  border: 1px solid var(--scc6-line);
}
.scc6-card h3 { margin: 0 0 0.6rem; font-size: 1.6rem; color: var(--scc6-mint); }
.scc6-card p { margin: 0 0 0.5rem; font-size: 1.3rem; color: var(--scc6-text); }
.scc6-card p:last-child { margin-bottom: 0; }
.scc6-card-icon { font-size: 2.4rem; color: var(--scc6-primary); margin-bottom: 0.4rem; }

.scc6-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.scc6-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.9rem; border-radius: 16px;
  background: rgba(255,105,180,0.15); color: var(--scc6-primary);
  font-size: 1.15rem; font-weight: 600;
  border: 1px solid rgba(255,105,180,0.4);
}
.scc6-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

/* === Feature list === */
.scc6-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; background: var(--scc6-bg-card);
  border-radius: var(--scc6-radius-sm); margin-bottom: 0.8rem;
  border-left: 3px solid var(--scc6-primary);
}
.scc6-feature-icon {
  flex: 0 0 40px; height: 40px; border-radius: 10px;
  background: rgba(255,105,180,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--scc6-primary); font-size: 1.8rem;
}
.scc6-feature h4 { margin: 0 0 0.3rem; font-size: 1.4rem; color: var(--scc6-text); }
.scc6-feature p { margin: 0; font-size: 1.2rem; color: var(--scc6-text); opacity: 0.9; }

/* === FAQ accordion === */
.scc6-faq-item {
  background: var(--scc6-bg-card);
  border: 1px solid var(--scc6-line);
  border-radius: var(--scc6-radius-sm);
  margin-bottom: 0.7rem; overflow: hidden;
}
.scc6-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  padding: 1rem 1.2rem; cursor: pointer;
  font-size: 1.35rem; font-weight: 700; color: var(--scc6-text);
  background: transparent; border: none;
}
.scc6-faq-q i { color: var(--scc6-primary); transition: transform .2s; }
.scc6-faq-item.scc6-is-open .scc6-faq-q i { transform: rotate(45deg); }
.scc6-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 1.2rem; font-size: 1.25rem; color: var(--scc6-text); opacity: 0.85;
}
.scc6-faq-item.scc6-is-open .scc6-faq-a {
  max-height: 360px; padding: 0 1.2rem 1rem; opacity: 1;
}

/* === Testimonials === */
.scc6-testimonial {
  background: var(--scc6-bg-card);
  border-left: 3px solid var(--scc6-mint);
  border-radius: var(--scc6-radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
}
.scc6-testimonial p { margin: 0 0 0.4rem; font-size: 1.25rem; }
.scc6-testimonial .stars { color: var(--scc6-primary); font-size: 1.1rem; margin-bottom: 0.3rem; }
.scc6-testimonial cite { color: var(--scc6-mint); font-style: normal; font-size: 1.1rem; font-weight: 700; }

/* === Winners === */
.scc6-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px dashed var(--scc6-line); font-size: 1.2rem;
}
.scc6-winner-row:last-child { border-bottom: none; }
.scc6-winner-name { color: var(--scc6-text); font-weight: 600; }
.scc6-winner-amount { color: var(--scc6-mint); font-weight: 700; }

/* === Payment grid === */
.scc6-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.scc6-pay {
  background: var(--scc6-bg-card); border: 1px solid var(--scc6-line);
  border-radius: 8px; padding: 0.7rem 0.4rem;
  font-size: 1.05rem; text-align: center; color: var(--scc6-text); font-weight: 600;
}

/* === App download CTA === */
.scc6-app-cta {
  background: linear-gradient(135deg, rgba(255,105,180,0.18), rgba(186,255,201,0.12));
  border-radius: var(--scc6-radius); padding: 1.6rem; text-align: center;
  border: 1px solid var(--scc6-line);
}
.scc6-app-cta h3 { margin: 0 0 0.5rem; color: var(--scc6-text); font-size: 1.7rem; }
.scc6-app-cta p { margin: 0 0 1rem; font-size: 1.25rem; color: var(--scc6-text); opacity: 0.9; }

/* === Footer === */
.scc6-footer {
  background: var(--scc6-bg-deep);
  border-top: 1px solid var(--scc6-line);
  padding: 2.2rem 0 8rem; margin-top: 1.5rem;
}
.scc6-footer h4 {
  color: var(--scc6-mint); font-size: 1.3rem; margin: 1.2rem 0 0.6rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.scc6-footer p { font-size: 1.2rem; color: var(--scc6-text); opacity: 0.85; line-height: 1.6rem; margin: 0 0 0.5rem; }
.scc6-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.scc6-footer-links a {
  flex: 1 1 30%; min-width: 90px;
  text-align: center;
  padding: 0.6rem 0.4rem; font-size: 1.1rem;
  background: var(--scc6-bg-card);
  border: 1px solid var(--scc6-line);
  border-radius: 8px; color: var(--scc6-text);
}
.scc6-footer-links a:hover { background: var(--scc6-primary); color: #1d1d1d; }
.scc6-copyright { text-align: center; font-size: 1.1rem; opacity: 0.7; margin-top: 1.4rem; }

/* === Mobile bottom nav === */
.scc6-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0;
  height: var(--scc6-bottom-h);
  background: #1d1d1d;
  border-top: 1px solid var(--scc6-line);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.4);
}
.scc6-bottom-nav-btn {
  position: relative;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: transparent; border: none;
  color: var(--scc6-text);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; padding: 4px 0;
  min-width: 60px; min-height: 60px;
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s ease, color .15s ease;
  text-decoration: none;
}
.scc6-bottom-nav-btn .material-icons { font-size: 22px; }
.scc6-bottom-nav-btn .fas, .scc6-bottom-nav-btn .far { font-size: 22px; }
.scc6-bottom-nav-btn ion-icon { font-size: 24px; }
.scc6-bottom-nav-btn:hover, .scc6-bottom-nav-btn:active {
  color: var(--scc6-primary); transform: translateY(-2px); text-decoration: none;
}
.scc6-bottom-nav-btn.scc6-is-current { color: var(--scc6-primary); }
.scc6-bottom-nav-btn.scc6-is-current::before {
  content: ''; position: absolute; top: 0;
  width: 28px; height: 3px; border-radius: 0 0 4px 4px;
  background: var(--scc6-primary);
}

/* === Mobile bottom padding so content not hidden under nav === */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

/* === Desktop: hide bottom nav, widen container === */
@media (min-width: 769px) {
  .scc6-bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .scc6-container, .scc6-wrapper, .scc6-header-inner { max-width: 720px; }
  .scc6-grid { grid-template-columns: repeat(6, 1fr); }
  .scc6-pay-grid { grid-template-columns: repeat(8, 1fr); }
}

/* === Utilities === */
.scc6-text-mint { color: var(--scc6-mint); }
.scc6-text-pink { color: var(--scc6-primary); }
.scc6-center { text-align: center; }
.scc6-mt-1 { margin-top: 0.5rem; }
.scc6-mt-2 { margin-top: 1rem; }
.scc6-hidden { display: none; }
