    /* Artist Profile Card - Image Design */
    .artist-profile-card {
        position: relative;
        width: 100%;
        background: linear-gradient(to bottom, #3060ff 60%, #3060ff 40%);
        border-radius: 30px;
        overflow: hidden;
        padding: 14px;
        box-sizing: border-box; 
        display: flex;
        align-items: stretch;
        gap: 24px;
        box-shadow: 0 10px 30px rgba(48, 96, 255, 0.2);
    }
    .artist-profile-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        object-fit: cover;
        opacity: 0.15;
        filter: blur(4px);
        z-index: 1;
        transform: scale(1.1);
    }
    .artist-profile-image {
        width: 120px;
        height: 120px;
        border-radius: 24px;
        object-fit: cover;
        z-index: 2;
        flex-shrink: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        background-color: #eee;
    }
    .artist-profile-details {
        z-index: 2;
        color: white;
        display: grid;
        grid-template-rows: 1fr auto 1fr;
        flex: 1;
    }
    .artist-profile-name {
        grid-row: 2;
        margin: 0;
        font-size: 25px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }
    .artist-profile-stats {
        grid-row: 3;
        display: flex;
        gap: 8px;
        align-items: center;
        align-self: end;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 6px 14px;
        border-radius: 35px;
        backdrop-filter: blur(8px);
        width: fit-content;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .artist-card-actions {
        position: absolute;
        bottom: 12px;
        right: 12px;
        display: flex;
        gap: 5px;
        z-index: 3;
    }
    .artist-action-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        font-size: 11px;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
    }
    .artist-action-btn.copied {
        background-color: #00b73d; /* Success green */
        border-color: #00b73d;
    }
    .artist-action-btn:hover {
        background-color: rgba(0, 0, 0, 0.6);
        transform: translateY(-2px);
    }
    .artist-action-btn i, .artist-action-btn svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    .artist-stat-item {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
    }
    .artist-stat-item i, .artist-stat-item svg {
        width: 11px;
        height: 11px;
        opacity: 0.8;
    }
    @media (max-width: 600px) {
        .artist-profile-card {
            gap: 16px;
        }
        .artist-profile-image {
            width: 135px;
            height: 135px;
            border-radius: 20px;
        }
        .artist-profile-stats {
            gap: 8px;
        }
        .artist-stat-item {
            font-size: 11px;
            gap: 4px;
        }
    }
        /* Specific padding for Artist Songs header */
    .artist-songs-header {
        padding: 32px 38px;
    }

    /* Hits Toggle Switch */
    .hits-toggle-switch {
        position: relative;
        display: inline-block;
        width: 44px;
        height: 24px;
    }
    .hits-toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    .hits-toggle-switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.3);
        transition: .3s;
        border-radius: 24px;
    }
    .hits-toggle-switch .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .3s;
        border-radius: 50%;
    }
    .hits-toggle-switch input:checked + .slider {
        background-color: rgba(255, 255, 255, 0.45);
    }
    .hits-toggle-switch input:checked + .slider:before {
        transform: translateX(20px);
        background-color: white;
    }

    /* Artist Radio Widget */
    .artist-radio-btn {
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(to bottom, #000000, #15151594);
        border-bottom-left-radius: 30px;
        display: flex;
        align-items: center;
        padding:  6px 18px 9px 18px;
        gap: 8px;
        z-index: 10;
        cursor: pointer;
        box-shadow: -4px 4px 15px rgba(0,0,0,0.3);
        transition: transform 0.2s, background-color 0.2s;
    }
    .artist-radio-text {
        color: white;
        font-weight: 400;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    .artist-radio-play {
        width: 24px;
        height: 24px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.2s;
    }
    .artist-radio-btn:hover .artist-radio-play {
        background-color: rgba(255, 255, 255, 0.3);
    }
    .artist-radio-play svg {
        width: 10px;
        height: 10px;
        fill: transparent;
        stroke: white;
        stroke-width: 2.5px;
        margin-left: 1px;
    }
    .artist-radio-play svg.lucide-pause {
        margin-left: 0;
    }
    .artist-radio-skip {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        border-radius: 50%;
        transition: background-color 0.2s;
    }
    .artist-radio-skip:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .artist-radio-skip svg {
        width: 10px;
        height: 10px;
        stroke: white;
        stroke-width: 2.5px;
    }