/* =====================================
   UPLOAD
===================================== */

.creator-form{

    margin-top:30px;

}

.form-row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.form-group{

    flex:1;

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;

    font-size:14px;

    color:#bdbdbd;

}

.form-group input,
.form-group select,
.form-group textarea{

    background:#1e1e1e;

    border:1px solid #333;

    color:#fff;

    border-radius:12px;

    padding:14px;

    font-size:15px;

    transition:.2s;

}

.form-group textarea{

    resize:vertical;

    min-height:130px;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    outline:none;

    border-color:#d4af37;

    box-shadow:0 0 10px rgba(212,175,55,.25);

}

.creator-form button{

    margin-top:25px;

}

/* =====================================
   SONGS
===================================== */

.creator-song{

    display:flex;

    align-items:center;

    gap:20px;

    padding:15px;

    margin-bottom:15px;

    background:#1b1b1b;

    border:1px solid #2e2e2e;

    border-radius:14px;

}

.creator-song-cover{

    width:70px;

    height:70px;

    min-width:70px;

    max-width:70px;

    object-fit:cover;

    border-radius:10px;

    border:1px solid #444;

}

.creator-song-info{

    flex:1;

}

.creator-song-info h3{

    margin:0 0 6px;

    color:#fff;

    font-size:18px;

}

.creator-song-meta{

    display:flex;

    gap:15px;

    color:#999;

    font-size:14px;

}

.creator-song-actions{

    display:flex;

    gap:10px;

}

.creator-song-actions button{

    width:42px;

    height:42px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    transition:.2s;

}

.creator-song-actions .secondary-btn{

    background:#2f2f2f;

    color:#fff;

}

.creator-song-actions .secondary-btn:hover{

    background:#444;

}

.creator-song-actions .danger-btn{

    background:#b32020;

    color:#fff;

}

.creator-song-actions .danger-btn:hover{

    background:#d53131;

}

.empty{

    text-align:center;

    color:#999;

    padding:40px;

}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width:900px){

    .form-row{
        flex-direction:column;
    }

}

@media (max-width:768px){

    .profile-wrapper{
        display:flex;
        flex-direction:column;
    }

    .profile-sidebar{
        width:100%;
        margin-bottom:20px;
    }

    .profile-body{
        width:100%;
    }

    .creator-song{

        flex-direction:column;

        text-align:center;

    }

    .creator-song-actions{

        width:100%;

        justify-content:center;

    }

}
.creator-song-stats{

    display:flex;

    gap:20px;

    margin-top:10px;

    color:#8f8f8f;

    font-size:13px;

}

.creator-song-stats span{

    display:flex;

    align-items:center;

    gap:6px;

}

.creator-song-stats i{

    color:#d4af37;

}
.creator-song-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:8px;

}

.song-status{

    padding:5px 12px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    text-transform:uppercase;

}

.song-status.public{

    background:#1e8e3e;

    color:#fff;

}

.song-status.private{

    background:#b3261e;

    color:#fff;

}

.song-status.unlisted{

    background:#d4af37;

    color:#000;

}

.creator-song-actions{

    position:relative;

}

.song-menu-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:10px;

    background:#2b2b2b;

    color:#fff;

    cursor:pointer;

    transition:.2s;

}

.song-menu-btn:hover{

    background:#3d3d3d;

}

.song-menu{

    position:absolute;

    right:0;

    top:50px;

    display:none;

    min-width:180px;

    background:#222;

    border:1px solid #3a3a3a;

    border-radius:12px;

    overflow:hidden;

    z-index:1000;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.song-menu.show{

    display:block;

}

.song-menu button{

    width:100%;

    display:flex;

    align-items:center;

    gap:10px;

    background:none;

    border:none;

    color:#fff;

    padding:12px 16px;

    cursor:pointer;

    text-align:left;

}

.song-menu button:hover{

    background:#333;

}

.artist-banner-preview{

    width:100%;

    height:220px;

    margin-bottom:20px;

    border-radius:16px;

    overflow:hidden;

    background:#1d1d1d;

}

.artist-banner-preview img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.artist-profile{

max-width:1200px;

margin:auto;

padding:40px;

}

.artist-banner{

height:300px;

border-radius:20px;

overflow:hidden;

margin-bottom:80px;

background:#222;

}

.artist-banner img{

width:100%;

height:100%;

object-fit:cover;

}

.artist-avatar{

width:180px;

height:180px;

margin:-120px auto 20px;

border-radius:50%;

overflow:hidden;

border:6px solid #121212;

background:#222;

}

.artist-avatar img{

width:100%;

height:100%;

object-fit:cover;

}

.artist-profile h1{

text-align:center;

font-size:38px;

margin-bottom:20px;

color:#fff;

}

.artist-bio{

max-width:800px;

margin:auto;

text-align:center;

color:#bbb;

line-height:1.8;

}

.artist-socials{

display:flex;

justify-content:center;

gap:20px;

margin-top:35px;

flex-wrap:wrap;

}

.artist-socials a{

padding:12px 22px;

background:#1f1f1f;

border-radius:10px;

text-decoration:none;

color:#fff;

transition:.2s;

}

.artist-socials a:hover{

background:#d4af37;

color:#111;

}
/* =====================================
   CREATOR STUDIO 2.0
===================================== */
.creator-dashboard{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.creator-hero-panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:30px;
    border-radius:24px;
    background:linear-gradient(135deg,rgba(29,185,84,.18),rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.creator-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
    color:#1db954;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.creator-hero-panel h2,
.creator-page-head h2{
    margin:0 0 10px;
    font-size:34px;
}

.creator-hero-panel p,
.creator-page-head p{
    max-width:720px;
    color:#aeb4bf;
    line-height:1.6;
}

.creator-hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.creator-stat-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(140px,1fr));
    gap:16px;
}

.creator-stat-card{
    padding:22px;
    border-radius:18px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.creator-stat-card span{
    display:block;
    margin-bottom:10px;
    color:#9da3ae;
    font-size:13px;
}

.creator-stat-card strong{
    display:block;
    font-size:32px;
    color:#fff;
}

.creator-grid-modern{
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
}

.creator-recent-box,
.creator-form-card{
    padding:24px;
    border-radius:22px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.creator-recent-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.creator-mini-song{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
}

.creator-mini-song img{
    width:52px;
    height:52px;
    border-radius:10px;
    object-fit:cover;
    background:#222;
}

.creator-mini-song div{
    flex:1;
    min-width:0;
}

.creator-mini-song strong,
.creator-mini-song span{
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.creator-mini-song span,
.creator-mini-song em{
    color:#9da3ae;
    font-size:13px;
    font-style:normal;
}

.creator-page-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:24px;
}

.creator-back-btn{
    margin-bottom:22px;
}

.creator-toolbar{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.creator-toolbar input,
.creator-toolbar select{
    border:none;
    border-radius:14px;
    background:#1d2027;
    color:#fff;
    padding:14px 16px;
}

.creator-toolbar input{
    flex:1;
}

.creator-song{
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    transition:.2s ease;
}

.creator-song:hover{
    background:#1d2027;
    transform:translateY(-2px);
}

.featured-pin{
    color:#1db954;
    margin-left:8px;
    font-size:14px;
}

.edit-song-modal-content{
    width:min(760px,94vw);
    max-height:88vh;
    overflow:auto;
}

.edit-song-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:18px;
}

.upload-drop small{
    color:#848b96;
    margin-top:8px;
}

.mini-form-btn{
    margin-top:10px !important;
    width:max-content;
    padding:10px 14px;
}

.big-submit-btn{
    width:max-content;
}

.creator-album-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:16px;
}

.creator-album-card{
    min-height:160px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    border-radius:18px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.creator-album-card i{
    font-size:42px;
    color:#1db954;
    margin-bottom:auto;
}

.creator-album-card h3{
    margin:20px 0 6px;
}

.creator-album-card p{
    color:#9da3ae;
}

.small-empty{
    padding:20px;
}

@media(max-width:900px){
    .creator-hero-panel,
    .creator-page-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .creator-hero-actions{
        justify-content:flex-start;
        width:100%;
    }

    .creator-hero-actions .primary-btn,
    .creator-hero-actions .secondary-btn,
    .creator-inline-action{
        width:100%;
        margin-right:0;
    }

    .creator-stat-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .creator-toolbar{
        flex-direction:column;
    }

    .creator-song{
        align-items:stretch;
        text-align:left;
    }

    .creator-song-header{
        align-items:flex-start;
        gap:10px;
    }

    .creator-song-actions{
        justify-content:flex-end;
    }

    .song-menu{
        right:0;
        left:auto;
    }

    .big-submit-btn{
        width:100%;
    }
}

@media(max-width:520px){
    .creator-stat-grid{
        grid-template-columns:1fr;
    }

    .creator-hero-panel,
    .creator-recent-box,
    .creator-form-card{
        padding:18px;
        border-radius:18px;
    }

    .creator-hero-panel h2,
    .creator-page-head h2{
        font-size:26px;
    }
}

/* ==========================================
   CREATOR ARTIST PROFILE 2.0
========================================== */

.creator-link-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.12);
    transition:.25s;
}

.creator-link-btn:hover{
    background:rgba(29,185,84,.16);
    border-color:rgba(29,185,84,.55);
    transform:translateY(-2px);
}

.creator-link-btn.disabled{
    opacity:.45;
    pointer-events:none;
}

.artist-profile-editor{
    overflow:hidden;
}

.artist-editor-preview{
    position:relative;
    margin:-30px -30px 30px;
    background:#101116;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.artist-banner-preview{
    height:260px;
    border-radius:0;
    overflow:hidden;
    background:linear-gradient(135deg,#111318,#1db95433);
}

.artist-banner-preview img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.artist-preview-user{
    display:flex;
    align-items:flex-end;
    gap:22px;
    padding:0 30px 28px;
    margin-top:-58px;
}

.artist-avatar-preview{
    width:128px;
    height:128px;
    border-radius:50%;
    padding:5px;
    background:#17191f;
    flex-shrink:0;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.artist-avatar-preview img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    display:block;
    background:#222;
}

.artist-preview-user h3{
    font-size:32px;
    margin-bottom:8px;
}

.artist-preview-user p{
    color:#bfc5cf;
    line-height:1.5;
    max-width:720px;
}

.creator-mini-title{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:18px;
    font-weight:800;
    margin:8px 0 20px;
}

.creator-form-actions{
    margin-top:18px;
}

.big-submit-btn i{
    margin-right:8px;
}

#artistProfileUrl{
    color:#9da3ae;
    cursor:copy;
}

@media(max-width:900px){
    .creator-page-head{
        gap:16px;
    }

    .creator-link-btn{
        width:100%;
        justify-content:center;
    }

    .artist-editor-preview{
        margin:-20px -20px 24px;
    }

    .artist-banner-preview{
        height:190px;
    }

    .artist-preview-user{
        align-items:center;
        padding:0 20px 24px;
        margin-top:-44px;
    }

    .artist-avatar-preview{
        width:96px;
        height:96px;
    }

    .artist-preview-user h3{
        font-size:24px;
    }

    .artist-preview-user p{
        font-size:14px;
    }
}

/* ==========================================
   MOBILE SAFE AREA FOR CREATOR FORMS
========================================== */
@media(max-width:900px){
    .creator-form,
    .creator-form-card,
    .artist-profile-editor,
    .creator-dashboard,
    .creator-recent-box{
        padding-bottom:calc(58px + env(safe-area-inset-bottom)) !important;
    }

    .creator-form-actions,
    .big-submit-btn,
    .creator-form button[type="submit"],
    .artist-profile-editor button[type="submit"]{
        margin-bottom:calc(22px + env(safe-area-inset-bottom)) !important;
    }

    .artist-editor-preview{
        margin-bottom:28px !important;
    }
}

/* ==========================================
   MOBILE CREATOR SAVE BUTTON VISIBILITY FIX
========================================== */
@media(max-width:900px){
    :root{
        --sn-mobile-player:104px;
        --sn-mobile-nav:60px;
        --sn-mobile-form-safe:calc(var(--sn-mobile-player) + var(--sn-mobile-nav) + 96px + env(safe-area-inset-bottom));
    }

    .creator-form,
    .creator-form-card,
    .artist-profile-editor,
    .creator-dashboard,
    .creator-recent-box,
    #creatorContent,
    #creatorHome{
        overflow:visible !important;
        max-height:none !important;
        padding-bottom:calc(var(--sn-mobile-form-safe) + 24px) !important;
        margin-bottom:var(--sn-mobile-form-safe) !important;
    }

    .creator-form-actions,
    .artist-profile-editor .creator-form-actions{
        position:sticky !important;
        bottom:calc(var(--sn-mobile-player) + var(--sn-mobile-nav) + 14px + env(safe-area-inset-bottom)) !important;
        z-index:90 !important;
        display:flex !important;
        flex-direction:column;
        gap:10px;
        padding:14px 0 18px !important;
        background:linear-gradient(180deg, rgba(24,24,24,0), #181818 30%, #181818 100%) !important;
    }

    .creator-form-actions .primary-btn,
    .creator-form-actions .secondary-btn,
    .creator-form-actions .danger-btn,
    .big-submit-btn,
    .creator-form button[type="submit"],
    .artist-profile-editor button[type="submit"]{
        width:100% !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        min-height:48px !important;
        margin-bottom:0 !important;
    }
}

/* ==========================================
   MOBILE CREATOR SCROLL RESTORE
========================================== */
@media(max-width:900px){
    :root{
        --sn-mobile-player:104px;
        --sn-mobile-nav:60px;
        --sn-mobile-safe-bottom:calc(var(--sn-mobile-player) + var(--sn-mobile-nav) + 92px + env(safe-area-inset-bottom));
    }

    .creator-form,
    .creator-form-card,
    .artist-profile-editor,
    .creator-dashboard,
    .creator-recent-box,
    #creatorContent,
    #creatorHome{
        overflow:visible !important;
        max-height:none !important;
        margin-bottom:0 !important;
        padding-bottom:var(--sn-mobile-safe-bottom) !important;
    }

    .creator-form-actions,
    .artist-profile-editor .creator-form-actions{
        position:static !important;
        bottom:auto !important;
        z-index:auto !important;
        background:transparent !important;
        padding:16px 0 calc(34px + env(safe-area-inset-bottom)) !important;
        margin-top:22px !important;
    }

    .creator-form-actions .primary-btn,
    .creator-form-actions .secondary-btn,
    .creator-form-actions .danger-btn,
    .big-submit-btn,
    .creator-form button[type="submit"],
    .artist-profile-editor button[type="submit"]{
        width:100% !important;
        min-height:48px !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
    }
}

/* ==========================================
   MOBILE FINAL CREATOR SCROLL FIX
========================================== */
@media(max-width:900px){
    :root{
        --sn-mobile-player:104px;
        --sn-mobile-nav:60px;
        --sn-mobile-bottom-space:calc(var(--sn-mobile-player) + var(--sn-mobile-nav) + 90px + env(safe-area-inset-bottom));
    }

    #creatorContent,
    #creatorHome,
    .creator-dashboard,
    .creator-form,
    .creator-form-card,
    .artist-profile-editor,
    .creator-recent-box{
        height:auto !important;
        max-height:none !important;
        overflow:visible !important;
        margin-bottom:0 !important;
        padding-bottom:var(--sn-mobile-bottom-space) !important;
    }

    .creator-form-actions,
    .artist-profile-editor .creator-form-actions{
        position:static !important;
        bottom:auto !important;
        z-index:auto !important;
        background:transparent !important;
        padding:16px 0 22px !important;
        margin:18px 0 0 !important;
        width:100% !important;
    }
}

/* ==========================================
   COVER GENERATOR
========================================== */
.cover-generator-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(320px,420px);
    gap:24px;
    align-items:start;
}

.cover-generator-form{
    min-width:0;
}

.cover-generator-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px;
}

.cover-generator-actions button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.creator-help-text{
    color:var(--muted,#9da3ae);
    font-size:14px;
    line-height:1.5;
    margin-top:14px;
}

.cover-preview-card{
    background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:18px;
    position:sticky;
    top:20px;
}

#coverGeneratorCanvas{
    width:100%;
    aspect-ratio:1/1;
    display:block;
    border-radius:18px;
    background:#111;
    box-shadow:0 22px 60px rgba(0,0,0,.38);
}

.cover-preview-card .muted{
    margin-top:12px;
    text-align:center;
}

.generated-cover-notice{
    align-items:center;
    gap:12px;
    background:rgba(29,185,84,.12);
    border:1px solid rgba(29,185,84,.35);
    border-radius:14px;
    padding:10px;
    margin:10px 0;
}

.generated-cover-notice img{
    width:54px;
    height:54px;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}

.generated-cover-notice strong{
    display:block;
    color:#fff;
    margin-bottom:2px;
}

.generated-cover-notice span{
    display:block;
    color:var(--muted,#9da3ae);
    font-size:13px;
    line-height:1.35;
}

.icon-action-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    cursor:pointer;
    margin-left:auto;
}

.icon-action-btn:hover{
    background:rgba(255,255,255,.18);
}

@media(max-width:900px){
    .cover-generator-layout{
        grid-template-columns:1fr;
    }

    .cover-preview-card{
        position:static;
        order:-1;
    }

    .cover-generator-actions{
        flex-direction:column;
    }

    .cover-generator-actions button{
        width:100%;
        min-height:48px;
    }
}

/* ==========================================
   AI COVER GENERATOR 2.0
========================================== */
.ai-cover-generator-layout .form-group textarea{
    width:100%;
    min-height:110px;
    resize:vertical;
    border:none;
    border-radius:14px;
    background:#202329;
    color:#fff;
    padding:14px 16px;
    line-height:1.5;
    outline:none;
}

.ai-cover-generator-layout .form-group textarea:focus,
.ai-cover-generator-layout .form-group input:focus,
.ai-cover-generator-layout .form-group select:focus{
    box-shadow:0 0 0 2px rgba(29,185,84,.35);
}

.ai-cover-preview-wrap{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    border-radius:18px;
    overflow:hidden;
    background:#101114;
    box-shadow:0 22px 60px rgba(0,0,0,.38);
}

.ai-cover-preview-wrap #coverGeneratorCanvas,
.ai-cover-preview-wrap .ai-cover-preview{
    width:100%;
    height:100%;
    display:block;
    border-radius:0;
    object-fit:cover;
    box-shadow:none;
}

.ai-cover-preview-card{
    border-color:rgba(29,185,84,.18);
}

.ai-cover-preview-card::before{
    content:"HYBRID";
    position:absolute;
    top:12px;
    left:12px;
    z-index:3;
    background:rgba(29,185,84,.9);
    color:#07110b;
    font-weight:900;
    font-size:12px;
    letter-spacing:.10em;
    padding:6px 10px;
    border-radius:999px;
}

@media(max-width:900px){
    .ai-cover-generator-layout .form-group textarea{
        min-height:96px;
    }

    .ai-cover-preview-card::before{
        top:10px;
        left:10px;
    }
}

/* ==========================================
   CREATOR ALBUMS 2.0
========================================== */

.album-editor-card{
    margin-bottom:24px;
}

.album-form-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.creator-album-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:18px;
}

.creator-album-card{
    position:relative;
    overflow:hidden;
    min-height:300px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:0;
}

.creator-album-cover{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.55;
    background:#222;
}

.creator-album-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.88));
}

.creator-album-content{
    position:relative;
    z-index:2;
    padding:22px;
}

.creator-album-content h3{
    font-size:22px;
    margin-bottom:6px;
}

.creator-album-content p,
.creator-album-content small{
    color:#bdbdbd;
}

.creator-album-stats{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:14px 0;
}

.creator-album-stats span{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;
    padding:6px 10px;
    font-size:12px;
}

.creator-album-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.creator-album-actions button{
    border:none;
    border-radius:999px;
    padding:9px 12px;
    cursor:pointer;
    background:rgba(255,255,255,.12);
    color:#fff;
}

.creator-album-actions button:hover{
    background:#d4af37;
    color:#000;
}

@media(max-width:900px){
    .creator-album-grid{
        grid-template-columns:1fr;
    }

    .creator-album-card{
        min-height:260px;
    }
}

/* =========================================================
   SOUNDNATION CREATOR CSS-ONLY PREMIUM LAYER v1
   Nur Optik. Keine Funktionen, kein HTML, kein JavaScript.
   ========================================================= */

:root{
    --accent:#d7b46a;
    --panel:#121318;
    --panel2:#181a21;
    --border:rgba(255,255,255,.105);
    --muted:#a8adba;
    --sn-shadow-soft:0 12px 32px rgba(0,0,0,.28);
}

.creator-form,
.creator-form-card,
.artist-profile-editor,
.album-editor-card,
.cover-preview-card,
.ai-cover-preview-card,
.creator-song,
.creator-album-card,
.artist-editor-preview,
.artist-profile,
.generated-cover-notice{
    background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
    border:1px solid rgba(255,255,255,.095);
    box-shadow:var(--sn-shadow-soft);
    backdrop-filter:blur(14px);
}

.creator-song:hover,
.creator-album-card:hover,
.artist-profile:hover{
    border-color:rgba(215,180,106,.25);
    box-shadow:0 18px 42px rgba(0,0,0,.32),0 0 0 1px rgba(215,180,106,.08) inset;
}

.form-group label,
.creator-mini-title,
.creator-page-head h2,
.artist-profile h1,
.creator-song-info h3,
.creator-album-content h3{
    color:#fffaf0;
}

.form-group input,
.form-group select,
.form-group textarea,
.creator-toolbar input,
.creator-toolbar select{
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.095);
    color:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.creator-toolbar input:focus,
.creator-toolbar select:focus{
    border-color:rgba(215,180,106,.5);
    box-shadow:0 0 0 4px rgba(215,180,106,.11);
}

.creator-hero-panel,
.creator-page-head{
    background:
        radial-gradient(circle at 16% 18%,rgba(215,180,106,.18),transparent 30%),
        linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
    border:1px solid rgba(215,180,106,.15);
    box-shadow:var(--sn-shadow-soft);
}

.creator-kicker,
.song-status.public,
.featured-pin,
.artist-profile-url,
#artistProfileUrl{
    color:#f5d98c !important;
}

.creator-stat-card strong,
.creator-song-stats i,
.creator-album-card i,
.creator-card i{
    color:#f5d98c;
}

.creator-song-cover,
.artist-banner-preview,
.artist-banner,
.artist-avatar,
.artist-avatar-preview,
.creator-album-cover,
#coverGeneratorCanvas,
.ai-cover-preview{
    border:1px solid rgba(215,180,106,.18);
    box-shadow:0 12px 30px rgba(0,0,0,.3);
}

.creator-song-actions button,
.creator-album-actions button,
.song-menu-btn,
.icon-action-btn,
.mini-form-btn{
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.07);
    color:#fff;
}

.creator-song-actions button:hover,
.creator-album-actions button:hover,
.song-menu-btn:hover,
.icon-action-btn:hover,
.mini-form-btn:hover{
    background:rgba(215,180,106,.16);
    border-color:rgba(215,180,106,.26);
    color:#f5d98c;
}

.creator-song-actions .danger-btn:hover,
.danger-btn:hover{
    background:rgba(255,84,84,.16) !important;
    border-color:rgba(255,84,84,.35) !important;
    color:#ffb4b4 !important;
}

.song-menu{
    background:linear-gradient(180deg,rgba(27,29,36,.98),rgba(14,15,19,.98));
    border:1px solid rgba(215,180,106,.16);
    box-shadow:0 18px 42px rgba(0,0,0,.36);
}

.song-menu button:hover{
    background:rgba(215,180,106,.13);
    color:#f5d98c;
}

.upload-drop,
.cover-generator-form{
    background:rgba(255,255,255,.035);
    border:1px dashed rgba(215,180,106,.25);
}

.generated-cover-notice{
    border-color:rgba(215,180,106,.22);
}

@media(max-width:900px){
    .creator-song,
    .creator-album-card,
    .creator-form,
    .creator-form-card,
    .artist-profile-editor{
        border-radius:18px;
    }
}

/* SoundNation Vertrauensstufen / Rechtebestätigung */
.creator-rights-confirmation{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:8px 0 20px;
    padding:15px 16px;
    border:1px solid rgba(215,180,106,.22);
    border-radius:14px;
    background:rgba(215,180,106,.07);
    color:#f2f2f2;
    line-height:1.45;
    cursor:pointer;
}
.creator-rights-confirmation input{
    width:19px;
    height:19px;
    margin-top:2px;
    accent-color:#d7b46a;
    flex:0 0 auto;
}
.song-status.status-approved{background:rgba(42,157,85,.18);color:#8de2ae;border:1px solid rgba(80,200,120,.32)}
.song-status.status-pending{background:rgba(215,180,106,.18);color:#f5d98c;border:1px solid rgba(215,180,106,.32)}
.song-status.status-rejected,.song-status.status-hidden{background:rgba(201,68,68,.18);color:#ff9c9c;border:1px solid rgba(225,90,90,.3)}
.song-status.status-draft{background:rgba(120,130,150,.18);color:#cbd2e1;border:1px solid rgba(150,160,180,.28)}
.creator-moderation-note{
    margin-top:8px;
    font-size:12px;
    color:#c7c7c7;
}

/* =====================================
   SONGVERWALTUNG – DATEIEN & ADMINSTATUS
===================================== */
.creator-song-owner{
    display:flex;
    align-items:center;
    gap:7px;
    margin:0 0 9px;
    color:#d7b46a;
    font-size:13px;
    font-weight:700;
}

.edit-song-owner{
    margin:-4px 0 18px;
    padding:11px 14px;
    border-radius:12px;
    background:rgba(215,180,106,.08);
    border:1px solid rgba(215,180,106,.2);
    color:#f2d58f;
    font-weight:700;
}

.edit-song-media-grid{
    display:grid;
    grid-template-columns:180px minmax(0,1fr);
    gap:22px;
    margin-bottom:24px;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.07);
}

.edit-song-cover-box{
    width:180px;
    aspect-ratio:1;
    overflow:hidden;
    border-radius:16px;
    background:#111318;
    border:1px solid rgba(255,255,255,.1);
}

.edit-song-cover-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.edit-song-file-fields{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.edit-song-file-fields .form-group{
    margin:0;
}

.edit-song-file-fields small,
.edit-admin-status small{
    display:block;
    margin-top:7px;
    color:#8f96a3;
    line-height:1.4;
}

.edit-current-file{
    display:inline-flex;
    align-items:center;
    width:max-content;
    max-width:100%;
    margin-top:8px;
    color:#d7b46a;
    font-size:13px;
    text-decoration:none;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.edit-current-file:hover{
    text-decoration:underline;
}

.edit-remove-cover{
    display:flex;
    align-items:center;
    gap:10px;
    width:max-content;
    max-width:100%;
    color:#d6d9df;
    font-size:14px;
    cursor:pointer;
}

.edit-remove-cover input{
    width:18px;
    height:18px;
    accent-color:#d7b46a;
}

.edit-admin-status{
    margin-top:18px;
    padding:16px;
    border-radius:14px;
    background:rgba(201,68,68,.07);
    border:1px solid rgba(225,90,90,.2);
}

@media(max-width:700px){
    .edit-song-media-grid{
        grid-template-columns:1fr;
    }

    .edit-song-cover-box{
        width:min(220px,100%);
        margin:0 auto;
    }
}

/* ==========================================
   ALBUM MANAGEMENT 3.0
========================================== */
.album-editor-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:22px;
}

.album-editor-heading h3{
    margin:4px 0 0;
    font-size:26px;
}

.album-cover-editor{
    display:grid;
    grid-template-columns:140px minmax(0,1fr);
    gap:22px;
    align-items:center;
    margin:18px 0 26px;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
}

.album-cover-editor img{
    width:140px;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:16px;
    background:#222;
    box-shadow:0 16px 36px rgba(0,0,0,.28);
}

.album-remove-cover{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:12px;
    color:#c6cbd4;
    font-size:13px;
}

.album-track-manager{
    margin-top:26px;
    padding:22px;
    border-radius:20px;
    background:#121419;
    border:1px solid rgba(255,255,255,.09);
}

.album-track-manager-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}

.album-track-manager-head h3{
    margin:4px 0 7px;
}

.album-track-manager-head p{
    margin:0;
    color:#969da8;
    line-height:1.45;
}

.album-track-count{
    flex:0 0 auto;
    padding:9px 13px;
    border-radius:999px;
    color:#dff9e8;
    background:rgba(29,185,84,.14);
    border:1px solid rgba(29,185,84,.35);
    font-size:13px;
    font-weight:800;
}

.album-track-columns{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:16px;
}

.album-track-column{
    min-width:0;
    border-radius:16px;
    background:#191c22;
    border:1px solid rgba(255,255,255,.07);
    overflow:hidden;
}

.album-track-column-head{
    min-height:65px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    border-bottom:1px solid rgba(255,255,255,.07);
}

.album-track-column-head h4{
    margin:0;
}

.album-track-column-head input{
    width:min(210px,55%);
    padding:9px 12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.09);
    background:#101217;
    color:#fff;
}

.album-track-list{
    min-height:150px;
    max-height:440px;
    overflow:auto;
    padding:9px;
}

.album-track-row{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
    padding:9px;
    margin-bottom:7px;
    border-radius:12px;
    background:#22252d;
    border:1px solid transparent;
    transition:.18s ease;
}

.album-track-row:last-child{
    margin-bottom:0;
}

.album-track-row:hover{
    border-color:rgba(29,185,84,.35);
    background:#282c35;
}

.album-track-row.selected{
    cursor:grab;
}

.album-track-row.selected:active{
    cursor:grabbing;
}

.album-track-row img{
    width:44px;
    height:44px;
    object-fit:cover;
    border-radius:9px;
    flex:0 0 auto;
    background:#111;
}

.album-track-row > span:not(.album-drag-handle){
    flex:1;
    min-width:0;
}

.album-track-row strong,
.album-track-row small{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.album-track-row small{
    margin-top:3px;
    color:#9299a5;
    font-size:12px;
}

.album-track-number{
    width:24px;
    text-align:center;
    color:#1db954;
}

.album-drag-handle{
    color:#858c97;
}

.album-track-row button,
.creator-album-actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    border:0;
    border-radius:10px;
    padding:9px 11px;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    cursor:pointer;
}

.album-track-row button:hover,
.creator-album-actions a:hover{
    background:rgba(29,185,84,.18);
}

.album-track-row-actions{
    display:flex;
    gap:5px;
    flex:0 0 auto;
}

.album-track-row button.danger,
.creator-album-actions .danger{
    color:#ff9b9b;
}

.album-track-empty{
    display:grid;
    place-items:center;
    min-height:125px;
    padding:20px;
    color:#858c97;
    text-align:center;
}

.album-track-status{
    margin:14px 0 0;
    color:#8f96a2;
    font-size:13px;
}

.creator-album-meta{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    align-items:center;
}

.creator-album-meta small,
.creator-album-owner{
    display:inline-flex;
    align-items:center;
    gap:6px;
    width:max-content;
    padding:6px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.07);
    color:#b8bec8;
    font-size:11px;
}

.creator-album-actions{
    flex-wrap:wrap;
}

.creator-album-actions a,
.creator-album-actions button{
    font-size:13px;
}

@media(max-width:900px){
    .album-track-columns{
        grid-template-columns:1fr;
    }

    .album-track-list{
        max-height:360px;
    }
}

@media(max-width:620px){
    .album-editor-heading,
    .album-track-manager-head{
        flex-direction:column;
    }

    .album-cover-editor{
        grid-template-columns:1fr;
    }

    .album-cover-editor img{
        width:min(180px,100%);
    }

    .album-track-column-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .album-track-column-head input{
        width:100%;
    }

    .album-track-row.selected{
        display:grid;
        grid-template-columns:24px 18px 44px minmax(0,1fr);
    }

    .album-track-row-actions{
        grid-column:1 / -1;
        justify-content:flex-end;
    }
}

.creator-album-actions i,
.creator-album-meta i,
.album-track-manager i{
    font-size:13px;
    margin:0;
}

/* ==========================================
   ARTIST PROFILE EDITOR – 2026 UPDATE
========================================== */
.creator-check-row{
    display:flex!important;
    align-items:center;
    gap:9px;
    margin-top:10px;
    color:#aeb5c2!important;
    font-size:13px!important;
    text-transform:none!important;
    letter-spacing:0!important;
    cursor:pointer;
}

.creator-check-row input{
    width:auto!important;
    min-width:18px;
    height:18px;
    margin:0;
}

.creator-field-help{
    display:block;
    margin-top:8px;
    color:#858c97;
    line-height:1.45;
}

.artist-profile-state{
    display:inline-flex;
    min-height:20px;
    margin-top:8px;
    color:#8ee6ad;
    font-size:12px;
    font-weight:800;
}

.artist-profile-state.is-locked{
    color:#ffca7a;
}

/* ==========================================
   CREATOR ANALYTICS
========================================== */
.stats-page-head{
    align-items:flex-end;
}

.stats-period-switch{
    display:inline-flex;
    gap:6px;
    padding:6px;
    border-radius:14px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.stats-period-switch button{
    border:0;
    border-radius:10px;
    padding:10px 14px;
    background:transparent;
    color:#9da3ae;
    cursor:pointer;
    font-weight:800;
    transition:.2s ease;
}

.stats-period-switch button:hover,
.stats-period-switch button.active{
    background:#1db954;
    color:#07140b;
}

.stats-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.stats-loading{
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#aeb4bf;
    border-radius:22px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.stats-total-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(125px,1fr));
    gap:12px;
}

.stats-total-card{
    position:relative;
    overflow:hidden;
    padding:18px;
    border-radius:18px;
    background:linear-gradient(150deg,#1b1e25,#14161b);
    border:1px solid rgba(255,255,255,.08);
}

.stats-total-card>i{
    position:absolute;
    right:14px;
    top:14px;
    color:rgba(29,185,84,.32);
    font-size:24px;
}

.stats-total-card span,
.stats-total-card strong{
    display:block;
}

.stats-total-card span{
    color:#9da3ae;
    font-size:12px;
    padding-right:28px;
}

.stats-total-card strong{
    margin-top:10px;
    font-size:27px;
}

.stats-period-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(170px,1fr));
    gap:12px;
}

.stats-period-card{
    min-width:0;
    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:12px;
    position:relative;
    padding:18px;
    border-radius:18px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.stats-period-icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:rgba(29,185,84,.14);
    color:#1db954;
}

.stats-period-card span,
.stats-period-card strong,
.stats-period-card small{
    display:block;
}

.stats-period-card>div:nth-child(2)>span,
.stats-period-card small{
    color:#9da3ae;
}

.stats-period-card>div:nth-child(2)>span{
    font-size:12px;
}

.stats-period-card strong{
    margin:2px 0;
    font-size:24px;
}

.stats-period-card small{
    font-size:11px;
}

.stats-trend{
    position:absolute;
    right:12px;
    top:12px;
    display:inline-flex!important;
    align-items:center;
    gap:4px;
    padding:5px 7px;
    border-radius:999px;
    font-size:10px!important;
    font-weight:900;
}

.stats-trend.positive{background:rgba(29,185,84,.14);color:#43dc78}
.stats-trend.negative{background:rgba(239,68,68,.14);color:#ff7676}
.stats-trend.neutral{background:rgba(255,255,255,.07);color:#9da3ae}

.stats-panel{
    padding:22px;
    border-radius:22px;
    background:#17191f;
    border:1px solid rgba(255,255,255,.08);
}

.stats-panel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}

.stats-panel-head h3{
    margin:0;
    font-size:20px;
}

.stats-panel-head .creator-kicker{
    margin-bottom:5px;
}

.stats-panel-period{
    color:#9da3ae;
    font-size:12px;
}

.stats-chart-scroll{
    width:100%;
    overflow-x:auto;
    padding-bottom:8px;
}

.stats-chart{
    height:250px;
    display:flex;
    align-items:stretch;
    gap:4px;
    padding:14px 4px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    background:repeating-linear-gradient(to top,transparent 0,transparent 49px,rgba(255,255,255,.045) 50px);
}

.stats-chart-column{
    flex:1;
    min-width:8px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    gap:7px;
}

.stats-chart-bars{
    width:100%;
    flex:1;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:2px;
}

.stats-chart-bars span{
    width:min(42%,11px);
    min-height:0;
    border-radius:5px 5px 1px 1px;
    transition:.2s ease;
}

.stats-chart-column:hover .stats-chart-bars span{
    filter:brightness(1.2);
}

.stats-chart-play{background:#1db954}
.stats-chart-download{background:#d4af37}
.stats-chart-column small{height:14px;color:#777f8b;font-size:9px;white-space:nowrap}

.stats-chart-legend{
    display:flex;
    justify-content:flex-end;
    gap:18px;
    margin-top:10px;
    color:#9da3ae;
    font-size:12px;
}

.stats-chart-legend span{display:inline-flex;align-items:center;gap:7px}
.stats-chart-legend i{width:10px;height:10px;border-radius:3px}
.stats-legend-play{background:#1db954}
.stats-legend-download{background:#d4af37}

.stats-two-column{
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
    gap:20px;
}

.stats-ranking-list,
.stats-album-list,
.stats-country-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.stats-ranking-row{
    display:grid;
    grid-template-columns:28px 50px minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    padding:11px;
    border-radius:15px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.055);
}

.stats-rank{
    color:#727986;
    font-weight:900;
    text-align:center;
}

.stats-ranking-row img,
.stats-album-row img{
    width:50px;
    height:50px;
    border-radius:10px;
    object-fit:cover;
    background:#24272e;
}

.stats-ranking-main,
.stats-album-row>div:nth-child(2){min-width:0}
.stats-ranking-main strong,
.stats-ranking-main span,
.stats-album-row strong,
.stats-album-row span{
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.stats-ranking-main span,
.stats-album-row span,
.stats-ranking-values span,
.stats-ranking-values small,
.stats-album-numbers span,
.stats-album-numbers small{
    color:#8f96a2;
    font-size:11px;
}

.stats-progress{
    height:4px;
    margin-top:8px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(255,255,255,.07);
}

.stats-progress i{
    display:block;
    height:100%;
    border-radius:inherit;
    background:#1db954;
}

.stats-ranking-values,
.stats-album-numbers{
    text-align:right;
}

.stats-ranking-values>* ,
.stats-album-numbers>*{display:block}

.stats-album-row{
    display:grid;
    grid-template-columns:50px minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    padding:11px;
    border-radius:15px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.055);
}

.stats-country-row{
    display:grid;
    grid-template-columns:minmax(150px,220px) minmax(140px,1fr) 60px;
    align-items:center;
    gap:14px;
}

.stats-country-row>div:first-child{
    display:flex;
    justify-content:space-between;
    gap:12px;
}

.stats-country-row span,
.stats-country-row em{
    color:#9da3ae;
    font-size:12px;
    font-style:normal;
}

.stats-country-bar{
    height:9px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(255,255,255,.07);
}

.stats-country-bar i{
    display:block;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(90deg,#1db954,#d4af37);
}

.stats-data-note{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-top:15px;
    color:#777f8b;
    font-size:11px;
    line-height:1.5;
}

@media(max-width:1180px){
    .stats-total-grid{grid-template-columns:repeat(3,1fr)}
    .stats-period-grid{grid-template-columns:repeat(2,1fr)}
    .stats-two-column{grid-template-columns:1fr}
}

@media(max-width:720px){
    .stats-page-head{align-items:stretch}
    .stats-period-switch{width:100%}
    .stats-period-switch button{flex:1;padding:10px 7px}
    .stats-total-grid{grid-template-columns:repeat(2,1fr)}
    .stats-period-grid{grid-template-columns:1fr}
    .stats-panel{padding:16px}
    .stats-ranking-row{grid-template-columns:24px 46px minmax(0,1fr)}
    .stats-ranking-values{grid-column:2/4;display:flex;align-items:center;gap:6px;text-align:left}
    .stats-ranking-values>*{display:inline}
    .stats-country-row{grid-template-columns:1fr 55px;gap:7px}
    .stats-country-row>div:first-child{grid-column:1/3}
    .stats-country-bar{grid-column:1}
    .stats-country-row em{grid-column:2;text-align:right}
}

@media(max-width:430px){
    .stats-total-grid{grid-template-columns:1fr}
    .stats-total-card{display:flex;align-items:center;justify-content:space-between;gap:12px}
    .stats-total-card span,.stats-total-card strong{margin:0}
    .stats-total-card>i{position:static;order:-1}
    .stats-album-row{grid-template-columns:46px minmax(0,1fr)}
    .stats-album-numbers{grid-column:2;text-align:left;display:flex;gap:6px;align-items:center}
    .stats-album-numbers>*{display:inline}
}
