/* ninogaming theme - mobile-first casino design (prefix: sc03-) */

:root {
  --sc03-bg: #262626;
  --sc03-bg-deep: #1c1c1c;
  --sc03-gold: #FFD700;
  --sc03-gold-dark: #ffb400;
  --sc03-cream: #FFF8DC;
  --sc03-purple: #9370DB;
  --sc03-purple-light: #8470FF;
  --sc03-text: #FFF8DC;
  --sc03-muted: #b8b0a8;
  --sc03-primary: #FFD700;
  --sc03-accent: #8470FF;
  --sc03-card: #303030;
  --sc03-card-2: #38323a;
  --sc03-border: rgba(255, 215, 0, 0.18);
  --sc03-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  --sc03-radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--sc03-bg);
  color: var(--sc03-text);
  line-height: 1.5;
  font-size: 1.5rem;
  overflow-x: hidden;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: var(--sc03-gold); text-decoration: none; }
button { font-family: inherit; }

/* Layout helpers */
.sc03-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.sc03-wrapper { padding: 1.5rem 0; }

/* Header */
.sc03-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(180deg, rgba(38,38,38,0.96), rgba(38,38,38,0.88));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sc03-border);
  z-index: 1000;
  padding: 0.7rem 1rem;
}
.sc03-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.sc03-logo { display: flex; align-items: center; gap: 0.55rem; color: var(--sc03-cream); font-weight: 700; font-size: 1.6rem; }
.sc03-logo img { width: 28px; height: 28px; border-radius: 7px; }
.sc03-logo .sc03-logo-name { color: var(--sc03-gold); }
.sc03-logo .sc03-logo-dot { color: var(--sc03-purple-light); }

.sc03-header-actions { display: flex; align-items: center; gap: 0.45rem; }
.sc03-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.05rem;
  font-size: 1.25rem; font-weight: 700;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 36px; line-height: 1;
}
.sc03-btn-gold { background: linear-gradient(135deg, var(--sc03-gold), var(--sc03-gold-dark)); color: #262626; box-shadow: 0 3px 10px rgba(255, 215, 0, 0.35); }
.sc03-btn-outline { background: transparent; color: var(--sc03-cream); border: 1.5px solid var(--sc03-gold); }
.sc03-btn-purple { background: linear-gradient(135deg, var(--sc03-purple-light), var(--sc03-purple)); color: #FFF8DC; box-shadow: 0 3px 10px rgba(132, 112, 255, 0.3); }
.sc03-btn:active { transform: scale(0.96); }
.sc03-btn-block { display: flex; width: 100%; padding: 1rem; font-size: 1.4rem; }
.sc03-menu-btn { background: transparent; border: none; color: var(--sc03-cream); font-size: 2rem; cursor: pointer; padding: 2px 6px; min-width: 38px; min-height: 38px; }

/* Main spacer for fixed header + bottom nav */
.sc03-main { padding-top: 6rem; padding-bottom: 8.5rem; min-height: 60vh; }

/* Mobile slide-in menu */
.sc03-mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 82%; max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1c1c1c, #262626);
  z-index: 9999;
  padding: 6rem 1.5rem 2rem;
  transition: right 0.3s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.sc03-mobile-menu.sc03-menu-open { right: 0; }
.sc03-mobile-menu a, .sc03-mobile-menu button.sc03-menu-link {
  display: flex; align-items: center; gap: 0.7rem;
  width: 100%; text-align: left;
  padding: 1rem 0.4rem;
  border-bottom: 1px solid var(--sc03-border);
  color: var(--sc03-cream); font-size: 1.45rem; font-weight: 600;
  background: transparent; border-left: none; border-right: none; border-top: none; cursor: pointer;
}
.sc03-mobile-menu a:active, .sc03-mobile-menu button.sc03-menu-link:active { color: var(--sc03-gold); }
.sc03-mobile-menu a i, .sc03-mobile-menu a .material-symbols-outlined { color: var(--sc03-gold); width: 24px; }
.sc03-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.sc03-menu-overlay.sc03-menu-open { opacity: 1; pointer-events: auto; }

/* Hero */
.sc03-hero { text-align: center; padding: 1.2rem 0.5rem 0.6rem; }
.sc03-hero h1 { font-size: 2.4rem; line-height: 1.25; color: var(--sc03-cream); margin-bottom: 0.6rem; font-weight: 800; }
.sc03-hero h1 .sc03-hi { color: var(--sc03-gold); }
.sc03-hero h1 .sc03-hi-2 { color: var(--sc03-purple-light); }
.sc03-hero p { color: var(--sc03-muted); font-size: 1.35rem; }
.sc03-hero-cta { display: flex; gap: 0.6rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }

/* Carousel */
.sc03-carousel {
  position: relative; overflow: hidden;
  border-radius: 16px;
  margin: 1rem 0;
  box-shadow: var(--sc03-shadow);
}
.sc03-carousel-track { display: flex; transition: transform 0.5s ease; will-change: transform; }
.sc03-carousel-slide { flex: 0 0 100%; position: relative; }
.sc03-carousel-slide img { width: 100%; height: 180px; object-fit: cover; }
.sc03-carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: var(--sc03-cream);
}
.sc03-carousel-caption h3 { font-size: 1.6rem; color: var(--sc03-gold); margin-bottom: 0.25rem; }
.sc03-carousel-caption p { font-size: 1.2rem; }
.sc03-carousel-dots { display: flex; gap: 6px; justify-content: center; padding: 0.6rem 0; }
.sc03-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.2s ease; padding: 0; }
.sc03-carousel-dot.sc03-carousel-dot-active { background: var(--sc03-gold); width: 22px; border-radius: 4px; }
.sc03-carousel-arrow {
  position: absolute; top: 45%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: var(--sc03-cream);
  border: none; width: 34px; height: 34px;
  border-radius: 50%; font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.sc03-carousel-arrow-prev { left: 8px; }
.sc03-carousel-arrow-next { right: 8px; }

/* Section heading */
.sc03-section { padding: 1.6rem 0; }
.sc03-section-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.9rem; font-weight: 800;
  color: var(--sc03-cream); margin-bottom: 0.5rem;
  position: relative; padding-left: 1rem;
}
.sc03-section-title::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px;
  background: linear-gradient(180deg, var(--sc03-gold), var(--sc03-purple-light)); border-radius: 2px;
}
.sc03-section-title .material-symbols-outlined, .sc03-section-title i { color: var(--sc03-gold); font-size: 2rem; }
.sc03-section-sub { color: var(--sc03-muted); font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.6; }

/* Grid */
.sc03-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.sc03-grid-2 { grid-template-columns: repeat(2, 1fr); }
.sc03-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Game card */
.sc03-game-card {
  background: var(--sc03-card); border: 1px solid var(--sc03-border);
  border-radius: 12px; overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: block; position: relative;
}
.sc03-game-card:active { transform: scale(0.96); border-color: var(--sc03-gold); box-shadow: 0 4px 14px rgba(255,215,0,0.18); }
.sc03-game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #1c1c1c; }
.sc03-game-name { padding: 0.45rem 0.4rem; font-size: 1.1rem; color: var(--sc03-cream); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.sc03-game-tag {
  position: absolute; top: 5px; left: 5px;
  background: linear-gradient(135deg, var(--sc03-gold), var(--sc03-gold-dark));
  color: #262626; font-size: 0.95rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px; line-height: 1;
}

/* Info card */
.sc03-card { background: var(--sc03-card); border: 1px solid var(--sc03-border); border-radius: 12px; padding: 1.2rem; }
.sc03-card h3 { color: var(--sc03-gold); font-size: 1.55rem; margin-bottom: 0.5rem; font-weight: 700; }
.sc03-card p { color: var(--sc03-muted); font-size: 1.3rem; line-height: 1.65; }
.sc03-card-icon { font-size: 2.2rem; color: var(--sc03-purple-light); margin-bottom: 0.4rem; }
.sc03-card-icon .material-symbols-outlined { font-size: 2.4rem; }

/* Promo banner */
.sc03-promo-banner {
  background: linear-gradient(135deg, var(--sc03-purple-light), var(--sc03-purple));
  border-radius: 14px;
  padding: 1.4rem;
  color: #FFF8DC;
  text-align: center;
  margin: 1rem 0;
  box-shadow: 0 6px 20px rgba(132, 112, 255, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.25);
}
.sc03-promo-banner h2 { color: var(--sc03-gold); font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: 800; }
.sc03-promo-banner p { font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.6; }
.sc03-promo-banner-gold {
  background: linear-gradient(135deg, #3a2e00, #5a4515);
  border: 1px solid var(--sc03-gold);
}

/* Text link */
.sc03-link { color: var(--sc03-gold); text-decoration: underline; cursor: pointer; font-weight: 600; }
.sc03-link:active { color: var(--sc03-purple-light); }

/* Bottom nav */
.sc03-bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: linear-gradient(180deg, #1c1c1c, #000000);
  border-top: 1px solid var(--sc03-border);
  display: flex; justify-content: space-around;
  padding: 0.3rem 0;
  z-index: 1000;
  height: 62px;
}
.sc03-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 56px;
  background: transparent; border: none;
  color: var(--sc03-muted); cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  padding: 0 4px; gap: 2px;
}
.sc03-nav-btn .sc03-nav-icon { font-size: 22px; line-height: 1; }
.sc03-nav-btn .sc03-nav-icon .material-symbols-outlined { font-size: 24px; }
.sc03-nav-btn .sc03-nav-label { font-size: 1rem; font-weight: 700; line-height: 1; }
.sc03-nav-btn:active { transform: scale(0.92); }
.sc03-nav-btn.sc03-nav-active { color: var(--sc03-gold); }
.sc03-nav-btn.sc03-nav-promo { color: var(--sc03-purple-light); }
.sc03-nav-btn.sc03-nav-promo:active { color: var(--sc03-gold); }

/* Footer */
.sc03-footer {
  background: var(--sc03-bg-deep);
  padding: 2rem 1.2rem 1.5rem;
  border-top: 1px solid var(--sc03-border);
  text-align: center;
}
.sc03-footer h3 { color: var(--sc03-gold); font-size: 1.6rem; margin-bottom: 0.6rem; font-weight: 800; }
.sc03-footer-brand { color: var(--sc03-muted); font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.65; }
.sc03-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 0.8rem 0 1.2rem; }
.sc03-footer-links a { display: inline-block; padding: 0.5rem 0.9rem; border: 1px solid var(--sc03-border); border-radius: 999px; color: var(--sc03-cream); font-size: 1.15rem; background: rgba(255,255,255,0.04); font-weight: 600; }
.sc03-footer-links a:active { background: var(--sc03-gold); color: #262626; }
.sc03-copyright { color: var(--sc03-muted); font-size: 1.1rem; margin-top: 1rem; line-height: 1.6; }

/* Reveal animation */
.sc03-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.sc03-revealed { opacity: 1; transform: translateY(0); }

/* FAQ */
.sc03-faq-item { background: var(--sc03-card); border: 1px solid var(--sc03-border); border-radius: 10px; margin-bottom: 0.7rem; overflow: hidden; }
.sc03-faq-q { padding: 1rem; font-weight: 700; color: var(--sc03-cream); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; font-size: 1.35rem; background: transparent; border: none; width: 100%; text-align: left; font-family: inherit; }
.sc03-faq-q .sc03-faq-icon { color: var(--sc03-gold); transition: transform 0.2s ease; flex-shrink: 0; }
.sc03-faq-item.sc03-faq-open .sc03-faq-icon { transform: rotate(45deg); }
.sc03-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1rem; color: var(--sc03-muted); font-size: 1.25rem; line-height: 1.65; }
.sc03-faq-item.sc03-faq-open .sc03-faq-a { max-height: 400px; padding: 0 1rem 1rem; }

/* Chips (payment / partner methods) */
.sc03-chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.sc03-chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem; background: var(--sc03-card); border: 1px solid var(--sc03-border); border-radius: 999px; color: var(--sc03-cream); font-size: 1.15rem; font-weight: 600; }
.sc03-chip i, .sc03-chip .material-symbols-outlined, .sc03-chip ion-icon { font-size: 1.5rem; color: var(--sc03-gold); }

/* Stats */
.sc03-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.sc03-stat { background: var(--sc03-card); border: 1px solid var(--sc03-border); border-radius: 10px; padding: 1rem 0.6rem; text-align: center; }
.sc03-stat-num { font-size: 2rem; color: var(--sc03-gold); font-weight: 800; line-height: 1.1; }
.sc03-stat-label { color: var(--sc03-muted); font-size: 1.1rem; margin-top: 0.25rem; }

/* Testimonial */
.sc03-testi { background: var(--sc03-card); border-left: 3px solid var(--sc03-gold); border-radius: 10px; padding: 1rem; margin-bottom: 0.7rem; }
.sc03-testi p { color: var(--sc03-cream); font-size: 1.25rem; line-height: 1.6; margin-bottom: 0.5rem; }
.sc03-testi-meta { color: var(--sc03-gold); font-size: 1.1rem; font-weight: 700; }

/* Winner ticker */
.sc03-winner-row { display: flex; align-items: center; gap: 0.6rem; background: var(--sc03-card); padding: 0.6rem 0.9rem; border-radius: 10px; margin-bottom: 0.45rem; border: 1px solid var(--sc03-border); }
.sc03-winner-row .sc03-winner-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--sc03-purple-light), var(--sc03-purple)); display: flex; align-items: center; justify-content: center; color: #FFF8DC; font-weight: 800; font-size: 1.2rem; flex-shrink: 0; }
.sc03-winner-row .sc03-winner-info { flex: 1; min-width: 0; }
.sc03-winner-row .sc03-winner-name { color: var(--sc03-cream); font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.sc03-winner-row .sc03-winner-game { color: var(--sc03-muted); font-size: 1.05rem; line-height: 1.2; }
.sc03-winner-row .sc03-winner-amt { color: var(--sc03-gold); font-weight: 800; font-size: 1.25rem; white-space: nowrap; }

/* Step list */
.sc03-steps { list-style: none; counter-reset: step; }
.sc03-steps li { position: relative; padding: 0.7rem 0 0.7rem 2.6rem; color: var(--sc03-muted); font-size: 1.3rem; line-height: 1.6; border-bottom: 1px dashed var(--sc03-border); counter-increment: step; }
.sc03-steps li:last-child { border-bottom: none; }
.sc03-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.6rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sc03-gold), var(--sc03-gold-dark));
  color: #262626; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}

/* Feature list */
.sc03-feature { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px dashed var(--sc03-border); }
.sc03-feature:last-child { border-bottom: none; }
.sc03-feature-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,215,0,0.12); display: flex; align-items: center; justify-content: center; color: var(--sc03-gold); flex-shrink: 0; }
.sc03-feature-icon .material-symbols-outlined, .sc03-feature-icon i { font-size: 2rem; }
.sc03-feature-text h4 { color: var(--sc03-cream); font-size: 1.35rem; margin-bottom: 0.2rem; font-weight: 700; }
.sc03-feature-text p { color: var(--sc03-muted); font-size: 1.2rem; line-height: 1.55; }

/* Inline keyword links list */
.sc03-inline-links { font-size: 1.25rem; line-height: 1.8; color: var(--sc03-muted); }
.sc03-inline-links a { color: var(--sc03-gold); text-decoration: underline; font-weight: 600; }

/* Responsive */
@media (min-width: 769px) {
  .sc03-bottom-nav { display: none; }
  body { max-width: 100%; }
  .sc03-container { max-width: 1200px; }
  .sc03-grid { grid-template-columns: repeat(6, 1fr); }
  .sc03-main { padding-bottom: 2rem; }
  .sc03-carousel-slide img { height: 320px; }
}
