 :root {
      --primary: #0f172a;
      --accent: #2563eb;
      --soft: #f8fafc;
      --text: #334155;
      --muted: #64748b;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Inter", sans-serif;
    }

    body {
      background: var(--soft);
      color: var(--text);
      line-height: 1.6;
    }

    .container {
      max-width: 1150px;
      margin: auto;
      padding: 60px 20px;
    }

    /* HERO */
    .hero {
      text-align: center;
      margin-bottom: 70px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 800px;
      margin: auto;
      font-size: 1.1rem;
      color: var(--muted);
    }

    /* WHY PLAYLISTING */
    .section {
      margin-bottom: 80px;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 25px;
      color: var(--primary);
      text-align: center;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .feature {
      background: #fff;
      padding: 30px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,.05);
    }

    .feature h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--primary);
    }

    .feature p {
      font-size: .95rem;
      color: var(--muted);
    }

    /* PLATFORMS */
    .platforms {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .platform {
      background: #fff;
      padding: 25px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,.05);
    }

    .platform h4 {
      margin-top: 10px;
      font-size: 1rem;
      color: var(--primary);
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #2563eb, #1e40af);
      padding: 60px 30px;
      border-radius: 20px;
      text-align: center;
      color: #fff;
    }

    .cta h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .cta p {
      max-width: 700px;
      margin: auto;
      margin-bottom: 30px;
      opacity: .95;
    }

    .cta a {
      display: inline-block;
      background: #fff;
      color: #1e40af;
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: .3s ease;
    }

    .cta a:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,.25);
    }

    /* FOOTER NOTE */
    .contact {
      margin-top: 50px;
      text-align: center;
      color: var(--muted);
      font-size: .95rem;
    }

    .contact span {
      font-weight: 600;
      color: var(--primary);
    }
  .playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.playlist-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.playlist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.playlist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.playlist-card h4 {
  font-size: .95rem;
  color: #0f172a;
  font-weight: 600;
}
