/* Container */
.aap-artist-wrap {
    max-width: 980px;
    margin: 24px auto;
    background: #121212;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* Cover */
.aap-artist-cover {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Header */
.aap-artist-header {
    text-align: center;
    padding: 0 20px 16px;
    position: relative;
    margin-top: -64px;
}

.aap-artist-avatar {
    display: inline-block;
    border-radius: 50%;
    padding: 6px;
    background: #121212;
    border: 4px solid #ff6600;
}

.aap-artist-avatar img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.aap-artist-name {
    margin: 12px 0 6px;
    font-size: 32px;
    font-weight: 800;
    color: #ff6600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.aap-verified svg {
    width: 22px;
    height: 22px;
    fill: #ffcc00;
}

/* Social icons */
.aap-socials {
    margin: 8px 0 10px;
}

.aap-socials .aap-ico {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #1f1f1f;
    margin: 0 6px;
    transition: transform .2s ease;
}

.aap-socials .aap-ico:hover {
    transform: translateY(-2px);
}

.aap-socials svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Buttons */
.aap-cta {
    margin: 10px 0 6px;
    display: inline-flex;
    gap: 10px;
}

.aap-follow,
.aap-promote {
    border: none;
    border-radius: 28px;
    padding: 10px 18px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s ease, transform .1s ease;
}

.aap-follow {
    background: #ff6600;
    color: #fff;
}

.aap-follow:hover {
    background: #e05500;
}

.aap-promote {
    background: #1f1f1f;
    color: #fff;
    border: 1px solid #333;
}

.aap-promote:hover {
    background: #2a2a2a;
}

/* Stats */
.aap-stats {
    margin: 6px 0 14px;
    color: #ccc;
}

.aap-stats .aap-sep {
    margin: 0 8px;
    color: #555;
}

/* Bio */
.aap-artist-bio {
    padding: 0 24px 20px;
    color: #ddd;
}

.aap-artist-bio p {
    line-height: 1.7;
}

/* Songs */
.aap-songs {
    padding: 10px 24px 24px;
}

.aap-songs h2 {
    color: #ff6600;
    margin: 10px 0 14px;
}

.aap-song-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.aap-song-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 8px;
    align-items: center;
}

.aap-song-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.aap-song-title {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.aap-song-title:hover {
    color: #ff6600;
}

.aap-song-views {
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
}

/* Grid shortcode */
.aap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.aap-card {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.aap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.aap-card-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff6600;
    margin-bottom: 10px;
}

.aap-card-name a {
    text-decoration: none;
    color: #ff6600;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin-top: 5px;
}

.aap-card-followers {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

@media (max-width:600px) {
    .aap-artist-cover {
        height: 180px;
    }

    .aap-artist-avatar img {
        width: 120px;
        height: 120px;
    }

    .aap-song-list {
        grid-template-columns: 1fr;
    }
}