body{
    margin:0;
    font-family:Arial;
    background:#0a0a0a;
    color:#fff;
}

/* NAV */
.nav{
    display:flex;
    justify-content:space-between;
    padding:15px;
    background:#111;
}

.nav a{
    color:#d4af37;
    margin:0 10px;
    text-decoration:none;
}

/* MOBILE */
.menu-toggle{
    display:none;
    font-size:35px;
    cursor:pointer;
}

@media(max-width:768px){
    .nav-links{
        display:none;
        flex-direction:column;
    }
    .nav-links.active{
        display:flex;
    }
    .menu-toggle{
        display:block;
    }
}

/* CARD */
.card{
    background:#111;
    padding:20px;
    margin:20px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(212,175,55,0.2);
}

/* BUTTON */
button{
    background:#d4af37;
    border-radius:10px;
    padding:10px;
    cursor:pointer;
}

/* COVER */
.cover{
    height:200px;
    background:linear-gradient(45deg,#000,#d4af37);
}

/* PROFILE HEADER */
.profile-header{
    text-align:center;
    margin-top:-60px;
}

/* AVATAR */
.avatar{
    width:120px;
    height:120px;
    border-radius:50%;
    border:4px solid #d4af37;
    object-fit:cover;
    background:#222;
}

/* NAME */
.name{
    font-size:24px;
    margin-top:10px;
}

/* BADGE */
.badge{
    color:#000;
    background:#d4af37;
    padding:5px 10px;
    border-radius:5px;
    font-size:12px;
}

/* STATS */
.stats{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:15px;
}

/* LINKS */
.links a{
    display:block;
    background:#111;
    padding:15px;
    margin:10px;
    border-radius:10px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    border:1px solid #333;
}

.links a:hover{
    border:1px solid #d4af37;
}

/* PREMIUM LOCK */
.lock{
    opacity:0.4;
    position:relative;
}

.lock::after{
    content:"&#128142; Premium";
    position:absolute;
    top:10px;
    right:10px;
    color:#d4af37;
}

.artist-card{
    background:#111;
    padding:15px;
    margin:10px;
    border-radius:10px;
    text-align:center;
    border:1px solid #222;
}

.avatar-small{
    width:60px;
    height:60px;
    border-radius:50%;
}