:root {
    --bg-dark: #0f1117;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-sidebar: rgba(15, 18, 24, 0.7);
    --bg-player: rgba(20, 24, 32, 0.85);
    --accent-primary: #8a2be2;
    --accent-secondary: #00ced1;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --border-radius: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(at 0% 0%, rgba(138, 43, 226, 0.15) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 206, 209, 0.1) 0, transparent 50%);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.save-btn {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.save-btn:hover {
    background: #9d4edd;
}

@media (max-width: 768px) {
    .artist-header-actions .btn-text {
        display: none;
    }
    .artist-header-actions .save-btn {
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
    }
    .artist-header-actions .save-btn svg, .artist-header-actions .save-btn .icon-sm {
        margin-right: 0 !important;
    }
}

.back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    width: fit-content;
}

.back-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.hidden {
    display: none !important;
}