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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Inter', sans-serif;
        background: #0a0a0a;
        color: #fff;
        overflow-x: hidden;
      }

      /* ===========================
BACKGROUND
=========================== */
      .bg-animation {
        position: fixed;
        inset: 0;
        z-index: -2;
        background:
          radial-gradient(circle at 20% 30%, rgba(33, 109, 181, .18), transparent 35%),
          radial-gradient(circle at 80% 70%, rgba(66, 105, 143, .18), transparent 35%),
          #090909;
        animation: bgMove 15s ease infinite;
      }

      @keyframes bgMove {

        0%,
        100% {
          filter: brightness(1);
        }

        50% {
          filter: brightness(1.15);
        }
      }

      .bg-grid {
        position: fixed;
        inset: 0;
        z-index: -1;
        background-image:
          linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 40px 40px;
        mask-image: linear-gradient(to bottom, black 60%, transparent);
      }

      /* ===========================
HEADER
=========================== */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 50px;
        background: rgba(12, 12, 12, .75);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        z-index: 100;
      }

      header img {
        height: 70px;
        transition: transform 0.3s ease;
      }

      header img:hover {
        transform: scale(1.05) rotate(-2deg);
      }

      nav {
        display: flex;
        gap: 40px;
      }

      nav a {
        text-decoration: none;
        color: #eee;
        font-weight: 500;
        letter-spacing: .8px;
        transition: .3s;
        position: relative;
      }

      nav a:hover {
        color: #216db5;
      }

      nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        height: 2px;
        width: 0;
        background: #216db5;
        transition: .3s;
      }

      nav a:hover::after {
        width: 100%;
      }

      /* ===========================
HERO
=========================== */
      .hero {
        padding-top: 120px;
      }

      .cover {
        position: relative;
        height: 420px;
        overflow: hidden;
      }

      .cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        filter: brightness(.65);
      }

      .cover::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
          linear-gradient(to bottom,
            rgba(0, 0, 0, .1),
            rgba(10, 10, 10, .96));
      }

      /* ===========================
PROFILE
=========================== */
      .profile {
        max-width: 1200px;
        margin: auto;
        padding: 0 40px;
        position: relative;
        margin-top: -90px;
        display: flex;
        align-items: flex-end;
        gap: 40px;
        z-index: 10;
      }

      .avatar {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid #216db5;
        box-shadow:
          0 0 50px rgba(33, 109, 181, .4);
        background: #111;
        flex-shrink: 0;
      }

      .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .profile-info {
        padding-bottom: 10px;
      }

      .profile-info h1 {
        font-size: 58px;
        font-weight: 800;
        letter-spacing: 2px;
        line-height: 1;
        margin-bottom: 14px;
      }

      .badges {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 20px;
        flex-wrap: wrap;
      }

      .verified {
        background: #216db5;
        padding: 7px 14px;
        border-radius: 999px;
        font-size: 14px;
        transition: transform .2s;
        font-weight: 600;
      }

      .verified:hover {
        transform: scale(1.1);
      }
      
      .label {
        background: rgba(255, 255, 255, .08);
        padding: 7px 14px;
        border-radius: 999px;
        transition: transform .2s;
        font-size: 14px;
      }

      .label a {
        color: #fff;
        text-decoration: none;
      }

      .label:hover {
        transform: scale(1.1);
      }

      .bio {
        max-width: 760px;
        color: #cfcfcf;
        line-height: 1.9;
        font-size: 17px;
      }

      /* ===========================
GLASS CARD
=========================== */
      .content {
        max-width: 1200px;
        margin: 70px auto;
        padding: 0 40px;
      }

      .glass {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 28px;
        backdrop-filter: blur(20px);
        padding: 35px;
        box-shadow:
          0 20px 60px rgba(0, 0, 0, .35);
      }

        .glass2 {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 28px;
        backdrop-filter: blur(20px);
        padding: 35px;
        box-shadow:
          0 20px 60px rgba(0, 0, 0, .35);
      }

      /* ===========================
SOCIAL LINKS
=========================== */
      .social-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 25px;
      }

      .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
      }

      .social-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 18px;
        text-decoration: none;
        color: #fff;
        transition: .3s;
      }

      .social-card:hover {
        transform: translateY(-4px);
        border-color: #216db5;
        background: rgba(33, 109, 181, .08);
        box-shadow: 0 12px 35px rgba(33, 109, 181, .18);
      }

      .social-left {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .social-icon {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, .06);
        font-size: 22px;
      }

      .social-name {
        font-size: 16px;
        font-weight: 600;
      }

      .social-arrow {
        font-size: 22px;
        opacity: .55;
        transition: .3s;
      }

      .social-card:hover .social-arrow {
        transform: translateX(6px);
        opacity: 1;
      }
      /* Footer */
      footer {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        padding: 50px 30px;
        text-align: center;
        margin-top: 80px;
        border-top: 2px solid rgba(33, 109, 181, 0.3);
      }

      footer p {
        margin: 10px 0;
        color: #aaa;
        font-size: 1rem;
      }

      footer a {
        color: #216db5;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      footer a:hover {
        color: #5a9fd4;
      }

      .socials {
        margin-top: 25px;
      }

      .socials a {
        margin: 0 15px;
        color: #216db5;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        display: inline-block;
      }

      .socials a:hover {
        color: #fff;
        transform: translateY(-3px);
      }      /* ===========================
FEATURED RELEASES
=========================== */
      .social-title2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 25px;
      }

      .social-grid2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
      }

.social-card2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

.social-card2:hover {
    transform: translateY(-4px);
    border-color: #216db5;
    background: rgba(33, 109, 181, .08);
    box-shadow: 0 12px 35px rgba(33, 109, 181, .18);
}

.social-icon2 {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.social-icon2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-name2 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
}

.social-artist2 {
    font-size: 14px;
    color: #aaa;
}

.social-arrow2 {
    display: none;
}      



      /* ===========================
RESPONSIVE
=========================== */
      @media(max-width:900px) {
        header {
          padding: 18px 24px;
        }

        nav {
          display: none;
        }

        .cover {
          height: 300px;
        }

        .profile {
          flex-direction: column;
          align-items: center;
          text-align: center;
          margin-top: -70px;
          padding: 0 20px;
        }

        .avatar {
          width: 150px;
          height: 150px;
        }

        .profile-info h1 {
          font-size: 38px;
        }

        .bio {
          font-size: 15px;
        }

        .content {
          padding: 0 20px;
        }
      }