/* =========================================================
   MUSIC FM — PROFILE PAGE CLEAN CSS
   קובץ נקי אחד בלבד לעמוד user/profile.php
   בלי שכבות CSS כפולות ובלי התנגשויות
   ========================================================= */

:root{
    --mf-profile-blue:#147cff;
    --mf-profile-blue-dark:#005bea;
    --mf-profile-sky:#59c7ff;
    --mf-profile-ink:#0f172a;
    --mf-profile-text:#1e293b;
    --mf-profile-muted:#64748b;
    --mf-profile-soft:#f8fbff;
    --mf-profile-line:rgba(203,213,225,.72);
    --mf-profile-card:rgba(255,255,255,.92);
    --mf-profile-shadow:0 18px 50px rgba(15,23,42,.08);
    --mf-profile-radius:24px;
}

html{
    scroll-behavior:smooth;
}

body.mf-social-profile-body{
    margin:0;
    direction:rtl;
    min-height:100vh;
    overflow-x:hidden;
    color:var(--mf-profile-text);
    font-family:'Heebo', Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 20%, rgba(20,124,255,.10), transparent 24%),
        radial-gradient(circle at 85% 5%, rgba(89,199,255,.10), transparent 26%),
        linear-gradient(180deg,#f7f9fc 0%,#f4f6fa 45%,#ffffff 100%);
}

/* live background stays behind profile */
body.mf-social-profile-body .live-bg{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
}

body.mf-social-profile-body .site-orb.orb-1{
    background:radial-gradient(circle,rgba(20,124,255,.18),transparent 72%);
}

body.mf-social-profile-body .site-orb.orb-2{
    background:radial-gradient(circle,rgba(0,91,234,.12),transparent 72%);
}

body.mf-social-profile-body .site-orb.orb-3,
body.mf-social-profile-body .site-orb.orb-4{
    background:radial-gradient(circle,rgba(20,124,255,.09),transparent 70%);
}

body.mf-social-profile-body .site-light-line{
    background:linear-gradient(90deg,transparent,rgba(20,124,255,.34),transparent);
}

body.mf-social-profile-body .site-particle{
    background:rgba(20,124,255,.38);
    box-shadow:0 0 14px rgba(20,124,255,.32);
}

/* hide old live badges only */
.ol-about-live,
.live-badge,
.mf-live-badge,
.live-logo,
.ol-live-logo,
.mf-user-live-logo,
.mf-live-floating-logo,
.mf-live-sticker,
.mf-live-page-badge{
    display:none !important;
}

/* layout */
.mf-onlive-profile,
.mf-onlive-profile *{
    box-sizing:border-box;
}

.mf-onlive-profile{
    width:100%;
    position:relative;
    z-index:2;
    padding:34px 18px 90px;
}

.mf-onlive-shell{
    width:min(1460px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(230px,280px) minmax(0,1fr) minmax(250px,320px);
    gap:22px;
    align-items:start;
}

.mf-onlive-left,
.mf-onlive-right{
    display:flex;
    flex-direction:column;
    gap:18px;
    position:sticky;
    top:92px;
}

.mf-onlive-center{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* cards */
.ol-card,
.ol-hero,
.ol-composer,
.ol-tabs,
.ol-feed,
.ol-comments,
.ol-post,
.ol-empty{
    background:var(--mf-profile-card);
    border:1px solid rgba(219,234,254,.95);
    box-shadow:var(--mf-profile-shadow);
    border-radius:var(--mf-profile-radius);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.ol-card{
    padding:18px;
    overflow:hidden;
}

.ol-card-head,
.ol-section-head,
.ol-post-head,
.ol-post-user,
.ol-name-row,
.ol-meta,
.ol-badges,
.ol-composer-tools,
.ol-post-actions,
.ol-comment-actions{
    display:flex;
    align-items:center;
}

.ol-card-head,
.ol-section-head,
.ol-post-head{
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
}

.ol-card h3,
.ol-section-head h2{
    margin:0;
    color:var(--mf-profile-ink);
    font-weight:950;
    line-height:1.2;
}

.ol-card h3{
    font-size:18px;
}

.ol-section-head h2{
    font-size:22px;
}

.ol-card-head small,
.ol-section-head span{
    color:var(--mf-profile-muted);
    font-weight:800;
    font-size:13px;
}

/* left sidebar */
.ol-dot-icon{
    width:28px;
    height:28px;
    border-radius:12px;
    background:rgba(20,124,255,.10);
    color:var(--mf-profile-blue);
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.ol-quick{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.ol-quick .ol-card-head{
    width:100%;
}

.ol-quick a,
.ol-card-link,
.ol-soft-btn,
.mf-follow-login{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:42px;
    padding:11px 13px;
    border-radius:16px;
    text-decoration:none;
    color:#1f2937;
    font-weight:850;
    background:rgba(248,250,252,.86);
    border:1px solid rgba(15,23,42,.07);
    transition:.18s ease;
}

.ol-quick a:hover,
.ol-card-link:hover,
.ol-soft-btn:hover,
.mf-profile-playlist-mini:hover{
    transform:translateY(-1px);
    background:#fff;
    border-color:rgba(20,124,255,.22);
    color:var(--mf-profile-blue);
}

.ol-friend-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin:12px 0;
}

.ol-friend-grid div,
.ol-stats-mini div{
    min-height:76px;
    border-radius:18px;
    background:linear-gradient(180deg,#fff,#f8fafc);
    border:1px solid rgba(15,23,42,.07);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    text-align:center;
}

.ol-friend-grid span{
    font-size:20px;
}

.ol-friend-grid b{
    font-size:13px;
    color:#334155;
}

.ol-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-bottom:12px;
}

.ol-gallery-grid span{
    aspect-ratio:1;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(20,124,255,.18),rgba(89,199,255,.14));
    border:1px solid rgba(255,255,255,.65);
}

/* hero */
.ol-hero{
    overflow:hidden;
    padding:0;
}

.ol-cover{
    min-height:210px;
    position:relative;
    background:
        linear-gradient(135deg,rgba(7,17,31,.94),rgba(20,124,255,.78)),
        repeating-linear-gradient(115deg,rgba(255,255,255,.08) 0 2px,transparent 2px 24px);
}

.ol-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 25%,rgba(0,0,0,.20));
    pointer-events:none;
}

.ol-cover-actions{
    position:absolute;
    left:18px;
    bottom:18px;
    display:flex;
    gap:10px;
    z-index:1;
}

.ol-cover-actions a{
    border:0;
    text-decoration:none;
    border-radius:999px;
    padding:10px 14px;
    background:rgba(255,255,255,.92);
    color:#111827;
    font-weight:900;
    box-shadow:0 10px 28px rgba(0,0,0,.12);
}

.ol-cover-actions a.primary{
    color:#fff;
    background:linear-gradient(135deg,var(--mf-profile-blue),var(--mf-profile-blue-dark));
    box-shadow:0 14px 30px rgba(20,124,255,.24);
}

.ol-profile-main{
    padding:0 26px 24px;
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    gap:20px;
    position:relative;
}

.ol-avatar-wrap{
    position:relative;
    margin-top:-66px;
    z-index:3;
    width:142px;
    height:142px;
}

.ol-avatar,
.ol-mini-avatar{
    background:linear-gradient(135deg,var(--mf-profile-blue),var(--mf-profile-blue-dark));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
    overflow:hidden;
    flex:none;
}

.ol-avatar{
    width:142px;
    height:142px;
    border-radius:38px;
    border:7px solid #fff;
    box-shadow:0 20px 50px rgba(15,23,42,.18);
    font-size:54px;
    cursor:zoom-in;
}

.ol-avatar img,
.ol-mini-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.ol-avatar-edit{
    position:absolute;
    left:4px;
    bottom:8px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#111827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:3px solid #fff;
}

.ol-identity{
    padding-top:18px;
    min-width:0;
}

.ol-name-row{
    display:flex;
    align-items:baseline;
    gap:9px;
    flex-wrap:wrap;
}

.ol-name-row h1{
    margin:0;
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-size:clamp(28px,4vw,42px);
    line-height:1;
    font-weight:1000;
    letter-spacing:-.04em;
    color:var(--mf-profile-ink);
}

.ol-verified{
    width:15px;
    height:15px;
    min-width:15px;
    min-height:15px;
    flex:none;
    border-radius:50%;
    background:#1d9bf0;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    margin:0;
    font-size:7px;
    line-height:1;
    transform:translateY(1px);
    box-shadow:none;
}

.ol-verified i{
    font-size:7px;
    line-height:1;
}

.ol-rank-pill{
    display:inline-flex;
    align-items:center;
    gap:7px;
    width:max-content;
    max-width:100%;
    margin:4px 0 10px;
    padding:0;
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
    color:var(--mf-profile-muted);
    font-size:17px;
    line-height:1.35;
    font-weight:850;
    letter-spacing:-.01em;
    transform:translateY(-2px);
}

.ol-rank-pill i{
    color:var(--mf-profile-ink);
    font-size:15px;
    line-height:1;
}

.mf-online-dot{
    width:13px;
    height:13px;
    border-radius:50%;
    background:#9ca3af;
    box-shadow:0 0 0 4px rgba(156,163,175,.16);
}

.mf-online-dot.online{
    background:#22c55e;
    box-shadow:0 0 0 4px rgba(34,197,94,.18);
}

.mf-online-dot.hidden{
    background:#cbd5e1;
}

.ol-handle{
    margin:3px 0 12px;
    color:var(--mf-profile-muted);
    font-weight:800;
    direction:ltr;
    text-align:right;
}

.ol-badges{
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:12px;
}

.ol-badges span{
    font-size:13px;
    font-weight:900;
    color:#334155;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    border-radius:999px;
    padding:8px 11px;
}

.ol-badges .owner{
    display:none;
}

.ol-bio{
    margin:0 0 13px;
    color:#374151;
    font-size:16px;
    line-height:1.7;
    max-width:760px;
}

.ol-meta{
    gap:14px;
    flex-wrap:wrap;
    color:var(--mf-profile-muted);
    font-weight:800;
    font-size:14px;
}

.ol-meta i,
.ol-info-list i,
.ol-avatar-edit,
.mf-profile-playlist-mini>span{
    color:var(--mf-profile-blue);
}

.ol-stats-row{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:4px;
}

.ol-stats-row div{
    border-radius:20px;
    background:linear-gradient(180deg,#fff,#f8fafc);
    border:1px solid rgba(15,23,42,.07);
    padding:15px 10px;
    text-align:center;
}

.ol-stats-row strong{
    display:block;
    font-size:24px;
    color:#111827;
}

.ol-stats-row span{
    display:block;
    color:var(--mf-profile-muted);
    font-weight:900;
    font-size:13px;
    margin-top:2px;
}

.mf-follow-actions{
    margin-top:16px;
}

.mf-follow-btn{
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,var(--mf-profile-blue),var(--mf-profile-blue-dark));
    color:#fff;
    padding:12px 18px;
    font-weight:1000;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(20,124,255,.25);
    font-family:inherit;
}

.mf-follow-btn.is-following{
    background:#111827;
}

/* tabs */
.ol-tabs{
    display:flex;
    gap:8px;
    padding:9px;
    position:sticky;
    top:76px;
    z-index:10;
}

.ol-tabs a{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#475569;
    font-weight:1000;
    border-radius:16px;
    padding:13px 10px;
    transition:.18s ease;
}

.ol-tabs a:hover,
.ol-tabs a.active{
    background:#111827;
    color:#fff;
    box-shadow:0 10px 24px rgba(15,23,42,.16);
}

/* composer */
.ol-composer{
    padding:16px;
    display:flex;
    gap:13px;
    align-items:flex-start;
}

.ol-mini-avatar{
    width:46px;
    height:46px;
    border-radius:16px;
    font-size:19px;
    box-shadow:0 8px 20px rgba(15,23,42,.10);
}

.ol-mini-avatar.small{
    width:34px;
    height:34px;
    border-radius:12px;
    font-size:14px;
}

.ol-composer-body{
    flex:1;
    min-width:0;
}

.ol-composer input{
    width:100%;
    border:1px solid rgba(15,23,42,.08);
    background:#f8fafc;
    border-radius:18px;
    padding:14px 16px;
    font-size:15px;
    outline:none;
    color:#111827;
    font-family:inherit;
}

.ol-composer input:focus,
.ol-comment-form textarea:focus,
.reply-form textarea:focus{
    border-color:rgba(20,124,255,.35);
    box-shadow:0 0 0 4px rgba(20,124,255,.08);
    background:#fff;
}

.ol-composer-tools{
    gap:12px;
    flex-wrap:wrap;
    margin-top:12px;
    color:#64748b;
    font-weight:900;
    font-size:13px;
}

.ol-composer-tools button,
.ol-comment-form button,
.reply-form button{
    margin-inline-start:auto;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,var(--mf-profile-blue),var(--mf-profile-blue-dark));
    color:#fff;
    font-weight:1000;
    padding:10px 18px;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(20,124,255,.22);
    font-family:inherit;
}

/* posts */
.ol-feed,
.ol-comments{
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.ol-post{
    padding:18px;
    box-shadow:none;
    border-radius:22px;
}

.ol-post-user{
    gap:11px;
    min-width:0;
}

.ol-post-user strong{
    display:block;
    color:#111827;
    font-size:16px;
}

.ol-post-user strong i{
    color:#1d9bf0;
    font-size:13px;
}

.ol-post-user small{
    display:block;
    color:var(--mf-profile-muted);
    font-weight:700;
    margin-top:3px;
}

.ol-post-head>button{
    border:0;
    background:#f1f5f9;
    color:#475569;
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer;
}

.ol-post p{
    margin:12px 0 14px;
    color:#273449;
    line-height:1.75;
    font-size:16px;
}

.ol-post-media{
    display:flex;
    align-items:center;
    gap:12px;
    border-radius:20px;
    background:linear-gradient(135deg,#111827,#1e293b);
    color:#fff;
    padding:16px;
    border:1px solid rgba(255,255,255,.14);
}

.ol-post-media>i{
    width:48px;
    height:48px;
    border-radius:17px;
    background:rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.ol-post-media strong{
    display:block;
}

.ol-post-media span{
    color:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:800;
}

.ol-post-actions{
    gap:10px;
    flex-wrap:wrap;
    margin-top:13px;
    color:#64748b;
    font-weight:900;
}

.ol-post-actions span{
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.07);
    border-radius:999px;
    padding:9px 12px;
}

.ol-post-actions .heart,
.ol-comment-actions .is-liked{
    color:var(--mf-profile-blue);
}

/* comments */
.ol-comment-form{
    display:flex;
    gap:12px;
    align-items:flex-start;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.07);
    border-radius:22px;
    padding:13px;
}

.ol-comment-form textarea,
.reply-form textarea{
    flex:1;
    min-height:52px;
    resize:vertical;
    border:1px solid rgba(15,23,42,.08);
    background:#fff;
    border-radius:16px;
    padding:13px 14px;
    font-family:inherit;
    font-size:14px;
    outline:none;
    color:#111827;
}

.ol-comments-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ol-comment{
    display:flex;
    gap:11px;
    align-items:flex-start;
    background:transparent;
    border:0;
    box-shadow:none;
}

.ol-comment.reply{
    margin-top:10px;
}

.ol-comment>a.ol-mini-avatar{
    text-decoration:none;
}

.ol-comment-body{
    flex:1;
    min-width:0;
}

.ol-comment-bubble{
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    padding:13px 15px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.ol-comment-bubble>div{
    display:flex;
    justify-content:space-between;
    gap:10px;
    align-items:center;
}

.ol-comment-bubble strong{
    color:#111827;
}

.ol-comment-bubble small{
    color:#94a3b8;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.ol-comment-bubble p{
    margin:8px 0 0;
    line-height:1.65;
    color:#334155;
}

.ol-comment-actions{
    gap:8px;
    margin:7px 9px 0;
    color:#64748b;
    font-weight:900;
    font-size:13px;
}

.ol-comment-actions form{
    display:inline-flex;
    margin:0;
}

.ol-comment-actions button,
.ol-comment-actions span{
    border:0;
    background:transparent;
    color:#64748b;
    font-weight:900;
    cursor:pointer;
    padding:4px 5px;
    font-family:inherit;
}

.reply-form{
    display:none;
    margin-top:10px;
    gap:8px;
    align-items:flex-start;
}

.reply-form.is-open,
.reply-form.active{
    display:flex;
}

.ol-replies{
    margin-top:10px;
    padding-right:16px;
    border-right:2px solid rgba(15,23,42,.08);
}

.ol-comment:target,
.ol-comment.mf-comment-highlight{
    scroll-margin-top:120px;
    animation:mfCommentLikeFocus 2.8s ease both;
}

@keyframes mfCommentLikeFocus{
    0%{box-shadow:0 0 0 0 rgba(22,131,255,.35); transform:translateY(-2px);}
    22%{box-shadow:0 0 0 8px rgba(22,131,255,.16); background:rgba(22,131,255,.045);}
    100%{box-shadow:none; background:transparent; transform:none;}
}

/* right sidebar */
.ol-about-text{
    margin:0 0 13px;
    color:#334155;
    line-height:1.7;
    font-weight:700;
}

.ol-info-list{
    list-style:none;
    margin:0 0 14px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.ol-info-list li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#475569;
    font-weight:850;
}

.ol-info-list i{
    width:18px;
    text-align:center;
}

.ol-stats-mini{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:9px;
    margin-bottom:12px;
}

.ol-stats-mini div{
    min-height:82px;
}

.ol-stats-mini span{
    width:22px;
    height:5px;
    border-radius:99px;
    background:linear-gradient(90deg,var(--mf-profile-blue),var(--mf-profile-sky));
}

.ol-stats-mini b{
    font-size:20px;
    color:#111827;
}

.ol-stats-mini small{
    color:var(--mf-profile-muted);
    font-weight:900;
}

/* playlists */
.mf-profile-playlists-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.mf-profile-playlist-mini{
    display:flex;
    align-items:center;
    gap:11px;
    text-decoration:none;
    color:#111827;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.07);
    border-radius:18px;
    padding:12px;
    transition:.18s ease;
}

.mf-profile-playlist-mini>span{
    width:42px;
    height:42px;
    border-radius:15px;
    background:rgba(20,124,255,.10);
    display:flex;
    align-items:center;
    justify-content:center;
}

.mf-profile-playlist-mini strong{
    display:block;
    font-size:14px;
}

.mf-profile-playlist-mini small{
    display:block;
    color:var(--mf-profile-muted);
    font-weight:800;
    margin-top:3px;
}

/* empty */
.ol-empty{
    padding:28px;
    text-align:center;
    color:var(--mf-profile-muted);
    box-shadow:none;
}

.ol-empty div{
    font-size:36px;
}

.ol-empty h3{
    margin:10px 0 6px;
    color:#111827;
}

.ol-empty p{
    margin:0;
    line-height:1.6;
}

.ol-empty.small{
    padding:16px;
    font-weight:800;
    display:flex;
    flex-direction:column;
    gap:5px;
}

/* responsive */
@media(max-width:1180px){
    .mf-onlive-shell{
        grid-template-columns:minmax(0,1fr) minmax(250px,310px);
    }

    .mf-onlive-left{
        display:none;
    }

    .mf-onlive-center{
        order:1;
    }

    .mf-onlive-right{
        order:2;
    }
}

@media(max-width:860px){
    .mf-onlive-profile{
        padding:18px 10px 86px;
    }

    .mf-onlive-shell{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .mf-onlive-center,
    .mf-onlive-right{
        width:100%;
    }

    .mf-onlive-right{
        position:static;
        order:3;
    }

    .ol-cover{
        min-height:150px;
    }

    .ol-cover-actions{
        right:12px;
        left:12px;
        justify-content:flex-start;
        bottom:12px;
    }

    .ol-profile-main{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:0 14px 18px;
        gap:10px;
    }

    .ol-avatar-wrap{
        margin-top:-58px;
        width:122px;
        height:122px;
    }

    .ol-avatar{
        width:122px;
        height:122px;
        border-radius:32px;
        font-size:46px;
    }

    .ol-identity{
        padding-top:0;
        width:100%;
    }

    .ol-name-row,
    .ol-meta,
    .ol-badges{
        justify-content:center;
    }

    .ol-name-row{
        align-items:center;
        flex-direction:column;
    }

    .ol-name-row h1{
        justify-content:center;
    }

    .ol-rank-pill{
        margin:2px auto 10px;
        justify-content:center;
        font-size:15px;
        transform:none;
    }

    .ol-handle{
        text-align:center;
    }

    .ol-stats-row{
        width:100%;
        grid-template-columns:repeat(2,1fr);
    }

    .ol-tabs{
        top:0;
        overflow-x:auto;
    }

    .ol-tabs a{
        min-width:92px;
    }

    .ol-composer,
    .ol-comment-form{
        flex-direction:column;
    }

    .ol-composer-tools button,
    .ol-comment-form button{
        margin-inline-start:0;
    }

    .ol-stats-mini{
        grid-template-columns:1fr;
    }

    .ol-comment-bubble>div{
        align-items:flex-start;
        flex-direction:column;
        gap:2px;
    }

    .ol-comment{
        gap:8px;
    }

    .ol-feed,
    .ol-comments,
    .ol-card{
        padding:14px;
    }
}

@media(max-width:520px){
    .ol-stats-row{
        grid-template-columns:1fr 1fr;
        gap:8px;
    }

    .ol-stats-row strong{
        font-size:20px;
    }

    .ol-cover-actions a{
        font-size:12px;
        padding:9px 11px;
    }

    .ol-post-actions span{
        font-size:12px;
    }

    .ol-name-row h1{
        font-size:28px;
    }

    .mf-onlive-profile{
        padding-inline:8px;
    }

    .ol-card,
    .ol-hero,
    .ol-composer,
    .ol-tabs,
    .ol-feed,
    .ol-comments,
    .ol-post{
        border-radius:20px;
    }
}
.artist-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:24px;
    height:24px;

    margin-right:8px;

    border-radius:50%;

    background:linear-gradient(135deg,#a855f7,#7c3aed,#2563eb);

    color:#fff;

    font-size:13px;
    font-weight:900;

    box-shadow:
        0 0 0 3px rgba(168,85,247,.15),
        0 10px 24px rgba(124,58,237,.38);

    vertical-align:middle;

    transition:.25s ease;
}

.artist-badge:hover{
    transform:translateY(-2px) scale(1.08);

    box-shadow:
        0 0 0 4px rgba(168,85,247,.22),
        0 14px 28px rgba(124,58,237,.48);
}

.artist-badge i{
    font-size:12px;
}