
    :root {
      --bg-1:#0f172a;
      --bg-2:#1e293b;
      --text:#e5e7eb;
      --muted:#cbd5e1;
      --glass: rgba(255,255,255,.1);
      --shadow: 0 10px 25px rgba(0,0,0,.25);
    }
    body {
      margin:0;
      font-family:Poppins, sans-serif;
      color:var(--text);
      background:linear-gradient(180deg, var(--bg-1), var(--bg-2));
      min-height:100vh;
      display:flex;
      flex-direction:column;
    }

    /* Nav */
    .nav {
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(8px);
      background:rgba(15,23,42,.7);
    }
    .nav-wrap {
      max-width:1100px;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 20px;
    }
    .brand {
      font-weight:700;
      font-size:20px;
      color:white;
      text-decoration:none;
    }
    .nav-links {
      display:flex;
      gap:8px;
    }
    .nav-links a {
      padding:10px 14px;
      border-radius:12px;
      text-decoration:none;
      color:var(--text);
      font-weight:600;
    }
    .nav-links a:hover {
      background:var(--glass);
    }

    /* Hero */
    .hero {
      text-align:center;
      padding:60px 20px 30px;
    }
    .headline {
      font-size:42px;
      font-weight:800;
      margin:0;
    }
    .sindhi {
      font-family:'Noto Nastaliq Urdu', serif; /* ✅ Sindhi font */
      direction:rtl;
      font-size:26px;
      margin:6px 0;
      color:#f1f5f9;
    }
    .tagline {
      font-size:16px;
      color:var(--muted);
      margin:8px 0 24px;
    }

    /* Songs */
    .songs-section {
      max-width:1000px;
      margin:40px auto;
      padding:0 20px;
      flex:1;
    }
    .songs-section h2 {
      text-align:center;
      margin-bottom:20px;
      font-size:28px;
      font-weight:700;
    }
    .song-list {
      list-style:none;
      padding:0;
      margin:0;
    }
    .song-item {
      background:white;
      color:black;
      margin-bottom:15px;
      padding:15px 20px;
      border-radius:12px;
      box-shadow:0 6px 18px rgba(0,0,0,.15);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      font-size:18px;
      font-family:'Noto Nastaliq Urdu', serif;
      direction:rtl;
      transition: all 0.3s ease;
      flex-wrap:wrap;
    }
    .song-item:hover {
      transform:translateY(-3px);
      box-shadow:0 10px 25px rgba(0,0,0,.25);
    }
    .song-item span {
      flex:1 1 auto;
      word-wrap:break-word;
      overflow-wrap:break-word;
    }
    .song-actions {
      flex-shrink:0;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .song-actions audio {
      height:32px;
      max-width:220px;
    }
    .song-actions a {
      text-decoration:none;
      background:#2563eb;
      color:white;
      padding:6px 12px;
      border-radius:8px;
      font-size:14px;
      transition:background .3s;
      white-space:nowrap;
    }
    .song-actions a:hover {
      background:#1e40af;
    }

    /* 📱 Mobile adjustments */
    @media (max-width:600px){
      .song-item {
        flex-direction:column;
        align-items:flex-start;
      }
      .song-actions {
        width:100%;
        flex-direction:column;
        align-items:flex-start;
      }
      .song-actions audio {
        width:100%;
        max-width:100%;
      }
    }

    /* Footer */
    footer {
      background:#2c3e50;
      color:white;
      text-align:center;
      padding:15px 10px;
      margin-top:40px;
      font-size:14px;
    }