:root {
  --bg-dark: #0a0a0f;
  --bg-card: #141420;
  --bg-card-hover: #1c1c2e;
  --yellow: #ffe135;
  --pink: #ff3cac;
  --cyan: #00f5d4;
  --orange: #ff6b35;
  --purple: #7b2ff7;
  --white: #f0f0f5;
  --gray: #8888aa;
  --font-display: 'Bangers', cursive;
  --font-body: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.comic-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,225,53,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  bottom: -50px;
  left: -80px;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--purple);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.burst {
  position: absolute;
  top: 12%;
  right: 8%;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  transform: rotate(12deg);
  text-shadow: 3px 3px 0 var(--pink);
  opacity: 0.7;
  animation: burstPulse 2s ease-in-out infinite;
}

@keyframes burstPulse {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 2px solid var(--yellow);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.title-main {
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--white);
  display: block;
  letter-spacing: 2px;
}

.title-accent {
  font-size: clamp(4.5rem, 14vw, 12rem);
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: 4px;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cyan);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ===== NICHES ===== */
.niches {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f1a 100%);
}

.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.highlight {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.niche-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.1);
}

.niche-card:hover::before {
  opacity: 1;
}

.niche-rap::before { background: linear-gradient(90deg, var(--orange), var(--pink)); }
.niche-celeb::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.niche-scary::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.niche-motivation::before { background: linear-gradient(90deg, var(--cyan), var(--purple)); }
.niche-luxury::before { background: linear-gradient(90deg, var(--yellow), var(--cyan)); }
.niche-history::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.niche-religion::before { background: linear-gradient(90deg, var(--white), var(--cyan)); }
.niche-conspiracy::before { background: linear-gradient(90deg, var(--pink), var(--purple)); }

.niche-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.niche-card p {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ===== HOW ===== */
.how {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(255,225,53,0.15);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--yellow);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #12121f 50%, var(--bg-dark) 100%);
  overflow: hidden;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing-burst {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--yellow);
  opacity: 0.06;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  z-index: 0;
  letter-spacing: 10px;
  white-space: nowrap;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.closing-text {
  color: var(--gray);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 0.25rem;
  letter-spacing: 2px;
}

.footer-tagline {
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.footer-copy {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem;
    min-height: 90vh;
  }

  .burst {
    font-size: 2rem;
    top: 8%;
    right: 5%;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .niches, .how, .closing {
    padding: 4rem 1.5rem;
  }

  .niche-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .step {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .step-number {
    width: auto;
    text-align: left;
    font-size: 2rem;
  }

  .closing-burst {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .niche-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 0.3rem 0.8rem;
  }
}