

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ===================== TOKENS ===================== */
:root {
    --ink:       #0d0f14;
    --ink2:      #4a4f5e;
    --ink3:      #8b91a1;
    --ink4:      #c2c7d4;
    --bg:        #f7f8fc;
    --surface:   #ffffff;
    --surface2:  #f0f2f8;
    --border:    #e4e7f0;
    --border-soft:#edf0f7;

    --accent:    #0EA5E9;
    --accent-h:  #0284c7;
    --accent-bg: #e0f7ff;
    --accent-bg2:#bae8ff;
    --accent-glow: rgba(14,165,233,.12);
    --accent-border: rgba(14,165,233,.28);

    --red:       #ef4444;
    --green-pos: #22c55e;

    --shadow-xs: 0 1px 2px rgba(13,15,20,.04);
    --shadow-sm: 0 2px 8px rgba(13,15,20,.06);
    --shadow-md: 0 6px 20px rgba(13,15,20,.08);

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 20px;

    --player-h:  72px;
    --nav-h:     60px;

    --font-display: 'Manrope', sans-serif;
    --font-body:    'Manrope', sans-serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
    transition: padding-bottom .3s cubic-bezier(.4,0,.2,1);
}
body.player-active { padding-bottom: var(--player-h); }

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-h); }
img { display: block; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink4); }

/* ===================== NAVBAR ===================== */
.nav-top {
    background: rgba(255,255,255,.94) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border) !important;
    box-shadow: var(--shadow-xs);
    height: var(--nav-h);
    z-index: 1040;
}
.nav-top .container { height: 100%; }
.nav-top .navbar-brand {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.3rem;
    color: var(--ink) !important;
    letter-spacing: -.02em;
    display: flex; align-items: center; gap: 8px;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  background-color: #fff;
}
.brand-icon {
    width: 32px; height: 32px;
    background: var(--accent); color: #fff;
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .9rem; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14,165,233,.35);
}
.brand-word { color: var(--accent); }
.nav-top .nav-link {
    font-family: var(--font-body); font-weight: 500; font-size: .82rem;
    color: var(--ink2) !important;
    padding: .4rem .75rem !important;
    border-radius: var(--radius-sm); transition: all .15s;
}
.nav-top .nav-link:hover { color: var(--accent) !important; background: var(--accent-bg); }
.nav-top .nav-link.active { color: var(--accent) !important; background: var(--accent-bg); font-weight: 600; }
.navbar-toggler { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .35rem .55rem; color: var(--ink2); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234a4f5e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); width: 18px; height: 18px; }

/* ===================== SEARCH BAR ===================== */
.search-bar {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: .65rem 0;
    position: sticky; top: var(--nav-h); z-index: 1035;
    box-shadow: var(--shadow-xs);
}
.s-wrap { max-width: 660px; margin: 0 auto; position: relative; }
.s-wrap .form-control {
    background: var(--surface2); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: .6rem 1rem .6rem 42px;
    font-family: var(--font-body); font-size: .875rem; color: var(--ink);
    transition: all .2s; height: 42px;
}
.s-wrap .form-control::placeholder { color: var(--ink3); }
.s-wrap .form-control:focus { background: var(--surface); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); outline: none; }
.s-wrap .s-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink3); font-size: .9rem; pointer-events: none; z-index: 2; }
.s-wrap .s-btn {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: var(--accent); border: none; color: #fff;
    border-radius: 10px; padding: .32rem .9rem;
    font-family: var(--font-body); font-size: .78rem; font-weight: 600;
    z-index: 2; transition: all .15s; height: 34px;
    display: flex; align-items: center; gap: 5px;
}
.s-wrap .s-btn:hover { background: var(--accent-h); box-shadow: 0 4px 12px rgba(14,165,233,.3); }
#suggest-box { border-radius: 0 0 var(--radius) var(--radius) !important; border: 1.5px solid var(--accent-border) !important; border-top: none !important; box-shadow: var(--shadow-md) !important; font-family: var(--font-body); font-size: .84rem; }

/* ===================== LAYOUT ===================== */
#main-content { padding-top: 1.25rem; padding-bottom: 2rem; }

/* ===================== HERO ===================== */
.hero {
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--accent-bg2) 60%, #ddd6fe 100%);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem; margin-bottom: 1.5rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero h1 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .5rem; color: var(--ink); }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--ink2); font-size: .875rem; margin: 0; line-height: 1.7; }

/* ===================== CARD ===================== */
.crd { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.4rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }

/* ===================== SECTION HEAD ===================== */
.s-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; padding-bottom: .6rem; border-bottom: 1.5px solid var(--border-soft); }
.s-head h2 { font-family: var(--font-display); font-size: .95rem; font-weight: 700; letter-spacing: -.01em; margin: 0; display: flex; align-items: center; gap: 7px; color: var(--ink); }
.s-head h2 i { color: var(--accent); font-size: .9rem; }
.s-head .sa { font-size: .75rem; font-weight: 500; color: var(--ink3); display: flex; align-items: center; gap: 3px; padding: .25rem .6rem; border-radius: 6px; transition: all .15s; }
.s-head .sa:hover { color: var(--accent); background: var(--accent-bg); }

/* ===================== TRACK ITEM ===================== */
.t-item { display: flex; align-items: center; gap: 12px; padding: 9px 1px; border-radius: var(--radius-sm); transition: background .12s; cursor: pointer; }
.t-item + .t-item { border-top: 1px solid var(--border-soft); }
.t-item:hover { background: var(--surface2); }
.t-item.is-playing { background: var(--accent-bg); }
.t-item.is-playing .t-name .t-artist-link { color: var(--accent); }
.t-item.is-playing .t-title span { color: var(--accent); opacity: .8; }
.t-item.is-playing .t-img { box-shadow: 0 0 0 2px var(--accent); }

.t-img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--surface2); }
.t-body { flex: 1; min-width: 0; }
.t-name { font-size: .855rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-name .t-artist-link { color: var(--ink); font-weight: 600; transition: color .15s; }
.t-name .t-artist-link:hover { color: var(--accent); }
.t-title { font-size: .775rem; color: var(--ink3); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.t-title span { color: var(--ink3); }
.t-dur { font-size: .72rem; color: var(--ink4); font-variant-numeric: tabular-nums; flex-shrink: 0; min-width: 36px; text-align: right; }
.t-acts { display: flex; gap: 4px; flex-shrink: 0; }
.t-acts .btn { width: 30px; height: 30px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: .8rem; transition: all .15s; cursor: pointer; border: none; }
.bp { background: var(--accent-bg2); color: var(--accent); border: 1px solid var(--accent-border) !important; }
.bp:hover { background: var(--accent); color: #fff; box-shadow: 0 3px 10px rgba(14,165,233,.3); transform: scale(1.05); }
.bd { background: var(--surface2); color: var(--ink3); border: 1px solid var(--border) !important; }
.bd:hover { background: var(--ink); color: #fff; border-color: var(--ink) !important; }

/* Charts */
.ch-rank { min-width: 26px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--ink4); flex-shrink: 0; }
.ch-rank.t3 { color: var(--accent); font-size: .9rem; }
.tu { color: var(--green-pos); font-size: .7rem; flex-shrink: 0; }
.td { color: var(--red); font-size: .7rem; flex-shrink: 0; }
.ts { color: var(--ink4); font-size: .7rem; flex-shrink: 0; }

/* Wide (search) */
.track-list-wide .t-item { padding: 11px 14px; gap: 14px; }
.track-list-wide .t-img { width: 56px; height: 56px; }
.track-list-wide .t-name { font-size: .9rem; }
.track-list-wide .t-title { font-size: .8rem; }
.track-list-wide .t-acts .btn { width: 32px; height: 32px; font-size: .84rem; }
.search-results-card { padding: 1.25rem 1.5rem; }
.search-results-card .t-item:hover { background: var(--accent-bg); }

/* ===================== LOAD MORE ===================== */
.btn-more { background: var(--surface); border: 1px solid var(--border); color: var(--ink2); font-family: var(--font-body); font-size: .8rem; font-weight: 500; padding: .5rem 2rem; border-radius: var(--radius-sm); transition: all .2s; box-shadow: var(--shadow-xs); }
.btn-more:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }

/* ===================== GENRE CHIPS ===================== */
.g-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .4rem .9rem; color: var(--ink2); font-size: .8rem; font-weight: 500; transition: all .15s; }
.g-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.g-chip i { color: var(--accent); font-size: .75rem; }
.g-chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.ch-tab { background: var(--surface); border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; padding: .35rem .85rem !important; font-family: var(--font-body); font-size: .78rem; font-weight: 500; color: var(--ink2); transition: all .15s; }
.ch-tab.active, .ch-tab:hover { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; box-shadow: 0 3px 10px rgba(14,165,233,.25); }

/* ===================== PLAYER BAR ===================== */
.player-bar {
    position: fixed; bottom: -90px; left: 0; right: 0;
    height: var(--player-h);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(13,15,20,.08);
    z-index: 1050;
    display: flex; align-items: center; padding: 0 1rem; gap: 12px;
    transition: bottom .35s cubic-bezier(.4,0,.2,1);
}
.player-bar.active { bottom: 0; }

.pl-mobile-prog { display: none; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--border); cursor: pointer; z-index: 10; }
.pl-mobile-prog-fill { height: 100%; background: var(--accent); width: 0%; transition: width .3s linear; border-radius: 0 2px 2px 0; }
.pl-mobile-prog:active { height: 6px; top: -1px; }
.pl-mobile-time { display: none; position: absolute; top: 6px; right: 10px; font-size: .6rem; color: var(--ink3); z-index: 11; pointer-events: none; font-variant-numeric: tabular-nums; }

.pl-info { display: flex; align-items: center; gap: 10px; width: 210px; flex-shrink: 0; min-width: 0; }
.pl-info img { width: 46px; height: 46px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.pl-info .plt { font-size: .78rem; font-weight: 600; white-space: nowrap; overflow: hidden; color: var(--ink); }
.pl-info .pla { font-size: .68rem; color: var(--ink3); white-space: nowrap; overflow: hidden; margin-top: 1px; }
.pl-info .plt span, .pl-info .pla span { display: inline-block; }
.marquee-scroll span { animation: marquee 8s linear infinite; animation-delay: 2s; }
@keyframes marquee { 0%,15%{transform:translateX(0)} 45%,55%{transform:translateX(var(--scroll-distance))} 85%,100%{transform:translateX(0)} }

.pl-center { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 0; }
.pl-btns { display: flex; align-items: center; gap: 14px; }
.pl-btns .btn { background: none; border: none !important; color: var(--ink3); font-size: .95rem; padding: 2px; transition: color .15s; }
.pl-btns .btn:hover { color: var(--ink); }
.pl-btns .bmp { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; box-shadow: 0 4px 14px rgba(14,165,233,.35); transition: all .2s; border: none !important; }
.pl-btns .bmp:hover { background: var(--accent-h); color: #fff; transform: scale(1.06); box-shadow: 0 6px 18px rgba(14,165,233,.4); }
.pl-btns .bmp.loading { pointer-events: none; opacity: .8; }
.pl-btns .bmp .spinner-border { width: 16px; height: 16px; border-width: 2px; }

.pl-prog { display: flex; align-items: center; gap: 8px; width: 100%; max-width: 500px; }
.pl-prog .pt { font-size: .65rem; color: var(--ink3); min-width: 32px; text-align: center; font-variant-numeric: tabular-nums; }
.pl-prog .progress { flex: 1; height: 3px; background: var(--border); border-radius: 2px; cursor: pointer; overflow: visible; transition: height .15s; }
.pl-prog .progress:hover { height: 5px; }
.pl-prog .progress-bar { background: var(--accent); border-radius: 2px; transition: width .1s linear; position: relative; }
.pl-prog .progress:hover .progress-bar::after { content: ''; position: absolute; right: -5px; top: -4px; width: 11px; height: 11px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 3px rgba(14,165,233,.2); }

.pl-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pl-right .bv { background: none; border: none !important; color: var(--ink3); font-size: .82rem; cursor: pointer; padding: 4px; transition: color .15s; }
.pl-right .bv:hover { color: var(--ink); }
.pl-right .vb { width: 68px; height: 3px; background: var(--border); border-radius: 2px; cursor: pointer; }
.pl-right .vb .progress-bar { background: var(--accent); }
.pl-right .bdl { background: var(--accent); border: none !important; color: #fff; font-family: var(--font-body); font-size: .72rem; font-weight: 600; padding: .35rem .8rem; border-radius: var(--radius-sm); white-space: nowrap; display: flex; align-items: center; gap: 5px; transition: all .15s; }
.pl-right .bdl:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(14,165,233,.3); }

/* ===================== FOOTER ===================== */
.ft { background: var(--surface); border-top: 1px solid var(--border); padding: 2rem 0 1.5rem; margin-top: 1.5rem; }
.ft h6 { font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--ink); letter-spacing: .02em; text-transform: uppercase; margin-bottom: .7rem; }
.ft a { color: var(--ink3); font-size: .78rem; display: block; padding: 3px 0; line-height: 1.5; transition: color .15s; }
.ft a:hover { color: var(--accent); }
.ft-brand { font-family: var(--font-display); color: var(--ink); font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em; display: flex; align-items: center; gap: 7px; margin-bottom: .5rem; }
.ft-brand .brand-icon { width: 26px; height: 26px; font-size: .8rem; }
.ft-desc { color: var(--ink3); font-size: .775rem; line-height: 1.65; }
.ft-bot { border-top: 1px solid var(--border-soft); padding-top: .75rem; margin-top: .5rem; font-size: .72rem; color: var(--ink4); text-align: center; }

/* ===================== TRACK DETAIL ===================== */
.detail-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 500; color: var(--ink2); background: var(--surface2); border: 1px solid var(--border); padding: 4px 12px; border-radius: 20px; }
.detail-badge i { font-size: .68rem; color: var(--accent); }
.btn-pl.btn-lg { font-family: var(--font-body); padding: .7rem 2.2rem; font-size: .95rem; font-weight: 600; border-radius: var(--radius); background: var(--accent); border: none; color: #fff; transition: all .2s; box-shadow: 0 4px 16px rgba(14,165,233,.3); }
.btn-pl.btn-lg:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,165,233,.38); }
.track-hero img { transition: transform .35s cubic-bezier(.4,0,.2,1); border-radius: var(--radius) !important; }
.track-hero:hover img { transform: scale(1.03); }

/* ===================== SPINNER ===================== */
.spin { display: inline-block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) { .search-bar { top: var(--nav-h); } }
@media (max-width: 767.98px) {
    .pl-info { width: 130px; }
    .pl-info > div { max-width: calc(100% - 56px); overflow: hidden; }
    .pl-right .vb, .pl-right .bv { display: none; }
    .pl-prog { display: none; }
    .pl-center { flex: 0; }
    .pl-mobile-prog { display: block; }
    .pl-mobile-time { display: block; }
    .hero { padding: 1.25rem 1.4rem; }
    .hero h1 { font-size: 1.1rem; }
    .crd { padding: 1rem 1.1rem; }
    .track-hero .d-flex { flex-direction: column; align-items: center; text-align: center; }
    .track-hero img { width: 160px !important; height: 160px !important; }
    .track-hero .d-flex.gap-2 { justify-content: center; }
}
@media (max-width: 575.98px) {
    .pl-right .bdl .dtx { display: none; }
    .pl-info { flex: 1; width: auto; min-width: 0; }
    .pl-info > div { max-width: calc(100% - 56px); overflow: hidden; }
    .pl-center { flex: 0 0 auto; }
    .pl-btns { gap: 8px; }
    .pl-btns .bmp { width: 34px; height: 34px; font-size: .82rem; }
    .s-wrap .s-btn .stx { display: none; }
    #main-content { padding-top: .9rem; }
}

/* ─────────────────────────────────────
   KARUSEL — kart formatı
───────────────────────────────────── */
.kar-wrap {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.kar-wrap::-webkit-scrollbar { display: none; }

.kar-card {
    flex-shrink: 0;
    width: 140px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s;
    position: relative;
}
.kar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.kar-img-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    overflow: hidden;
}
.kar-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.kar-card:hover .kar-img-wrap img { transform: scale(1.06); }

.kar-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .18s;
    cursor: pointer;
}
.kar-card:hover .kar-play { opacity: 1; }

.kar-info {
    padding: 8px 9px 4px;
}
.kar-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
.kar-artist {
    font-size: .7rem;
    color: var(--ink3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.kar-dl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 7px;
    color: var(--ink3);
    font-size: .8rem;
    transition: color .15s;
    text-decoration: none;
}
.kar-dl:hover { color: var(--accent); }

.kar-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    cursor: pointer;
    transition: all .15s;
    padding: 0;
}
.kar-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }

/* mobile: karusel kartlar bir az kiçik */
@media (max-width: 576px) {
    .kar-card { width: 120px; }
    .kar-img-wrap { width: 120px; height: 120px; }
    .kar-play { opacity: 1; }
}


/* ===================== ARTISTS ===================== */
.arl-wrap { }

.arl-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 1.4rem;
    border-bottom: 1px solid var(--border-soft);
    text-decoration: none;
    transition: background .12s;
}
.arl-row:last-child { border-bottom: none; }
.arl-row:hover { background: var(--surface2); }
.arl-row:hover .arl-arr { opacity: 1; transform: translateX(2px); }

.arl-rank {
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
    color: var(--ink4);
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}
.arl-rank.top { color: var(--accent); }

.arl-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface2);
}
.arl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.arl-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink3);
    background: var(--surface2);
}

.arl-info {
    flex: 1;
    min-width: 0;
}
.arl-name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.arl-meta {
    font-size: .72rem;
    color: var(--ink3);
    display: flex;
    gap: 5px;
    margin-top: 1px;
}

.arl-arr {
    font-size: .75rem;
    color: var(--ink4);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .15s, transform .15s;
}

/* ===================== TRACK ===================== */
.bc-scroll-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
.bc-scroll-wrap::-webkit-scrollbar { display:none; }
.bc-scroll { flex-wrap:nowrap; white-space:nowrap; min-width:max-content; }
.breadcrumb-sm { font-size:.8rem; margin:0; padding:0; background:none; }
.breadcrumb-sm a { color:var(--accent); text-decoration:none; }
.track-seo-text { font-size:.82rem; color:var(--ink2); margin:1rem 0 0; line-height:1.7; border-top:1px solid var(--border); padding-top:.8rem; }
.stat-box { text-align:center; padding:.6rem 1.2rem; background:var(--bg2); border-radius:12px; min-width:80px; }
.stat-num { font-size:1.1rem; font-weight:800; color:var(--ink1); }
.stat-lbl { font-size:.72rem; color:var(--ink3); margin-top:2px; }
.artist-card-wrap .d-flex { padding:.3rem 0; }
.track-hero { border:none; box-shadow:0 2px 16px rgba(0,0,0,.05); overflow:hidden; }
.track-hero-inner { display:flex; gap:1.5rem; flex-wrap:wrap; }
.track-cover { position:relative; flex-shrink:0; }
.track-cover img { width:180px; height:180px; border-radius:14px; object-fit:cover; box-shadow:0 8px 30px rgba(0,0,0,.1); }
.track-dur { position:absolute; bottom:8px; right:8px; background:rgba(0,0,0,.65); color:#fff; padding:2px 7px; border-radius:6px; font-size:.72rem; font-weight:600; }
.track-info { flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }
.track-label { font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--accent); margin-bottom:4px; }
.track-title { font-size:1.4rem; font-weight:800; line-height:1.2; margin:0 0 .3rem; word-break:break-word; }
.track-artist-name { margin-bottom:.5rem; font-size:1rem; }
.track-artist-name a { color:var(--accent); font-weight:700; text-decoration:none; }
.track-meta { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:.8rem; }
.track-actions { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
.btn-track-play { background:var(--accent); color:#fff; font-weight:700; padding:.55rem 1.4rem; border-radius:50px; font-size:.88rem; border:none; transition:all .2s; }
.btn-track-play:hover { opacity:.9; transform:translateY(-1px); }
.btn-track-dl { border:2px solid var(--accent); background:transparent; color:var(--accent); font-weight:700; padding:.5rem 1.2rem; border-radius:50px; font-size:.88rem; transition:all .2s; text-decoration:none; display:inline-flex; align-items:center; }
.btn-track-dl:hover { background:var(--accent); color:#fff; }
.btn-track-share { border:1px solid var(--border); background:transparent; color:var(--ink2); padding:.5rem .8rem; border-radius:50px; font-size:.88rem; transition:all .2s; }
.btn-track-share:hover { border-color:var(--accent); color:var(--accent); }
@media(max-width:575.98px) {
    .track-hero-inner { flex-direction:column; align-items:center; text-align:center; gap:1rem; }
    .track-cover img { width:150px; height:150px; }
    .track-title { font-size:1.1rem; }
    .track-meta, .track-actions { justify-content:center; }
}

/* ===================== CONTACT ===================== */
.contact-input {
    background: var(--bg) !important;
    border: 2px solid var(--border) !important;
    border-radius: 10px !important;
    padding: .65rem .9rem !important;
    font-size: .9rem !important;
    transition: all .2s !important;
}
.contact-input:focus {
    background: #fff !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px var(--accent-glow) !important;
}
.contact-input::placeholder { color: var(--ink3) !important; }

/* ===================== LYRICS ===================== */
.lyrics-list { display:flex; flex-direction:column; gap:0; }
.lyrics-item {
    display:flex; align-items:center; gap:12px;
    padding:10px 1rem;
    border-bottom:1px solid var(--border, #f0f0f0);
    transition:background .15s;
}
.lyrics-item:last-child { border-bottom:none; }
.lyrics-item:hover { background:var(--ink1, #f9f9f9); }
.lyrics-thumb { flex-shrink:0; }
.lyrics-meta { flex:1; min-width:0; }
.lyrics-title {
    display:block; font-weight:600; font-size:.9rem;
    color:var(--text1); text-decoration:none;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.lyrics-title:hover { color:var(--accent); }
.lyrics-artist a {
    font-size:.78rem; color:var(--text2, #666);
    text-decoration:none;
}
.lyrics-artist a:hover { color:var(--accent); }
.lyrics-preview {
    font-size:.74rem; color:var(--text3, #999);
    margin-top:2px;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    font-style:italic;
}
.lyrics-action { flex-shrink:0; }






.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
.ar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: .9rem .4rem .8rem;
    transition: border-color .2s, transform .15s, box-shadow .2s;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.ar-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14,165,233,.12);
    color: inherit;
}
.ar-card__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: .6rem;
    flex-shrink: 0;
    border: 2px solid var(--border);
}
.ar-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ar-card__initial {
    width: 100%;
    height: 100%;
    background: var(--accent-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-display);
}
.ar-card__name {
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .2rem;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 2px;
    box-sizing: border-box;
}
.ar-card__meta {
    font-size: .62rem;
    color: var(--ink3);
}
@media (min-width: 600px) {
    .artists-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .ar-card__img { width: 72px; height: 72px; }
    .ar-card { padding: 1.1rem .75rem .9rem; }
    .ar-card__name { font-size: .82rem; }
}
@media (min-width: 900px) {
    .artists-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}





.article-body p {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--ink1);
    margin-bottom: 1rem;
}
.art-h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink1);
    margin: 1.5rem 0 .6rem;
    padding-bottom: .3rem;
    border-bottom: 1px solid var(--brd);
}