﻿.tracklist-facelift {
    --fx-primary: #e67e22;
    --fx-bg: #080a0d;
    --fx-text: #d2d9df;
    --fx-border: rgba(230, 126, 34, 0.28);
    --track-primary: #e67e22;
    --track-muted: #afb7be;
}

.tracklist-facelift .hero-note {
    margin-top: 22px;
    color: #d6dde3;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.tracklist-facelift .track-main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.tracklist-facelift .track-main-head h3 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: clamp(28px, 3.8vw, 40px);
}

.tracklist-facelift .track-status {
    font-size: 13px;
    color: #d9e0e6;
    border: 1px solid rgba(230, 126, 34, 0.45);
    background: rgba(230, 126, 34, 0.12);
    border-radius: 999px;
    padding: 7px 12px;
    white-space: nowrap;
}

.tracklist-facelift .track-frame {
    border-radius: 18px;
    border: 1px solid var(--fx-border);
    background: linear-gradient(165deg, rgba(22, 24, 30, 0.94), rgba(16, 18, 23, 0.78));
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
    padding: 18px;
}

.tracklist-facelift .track-list {
    display: grid;
    gap: 12px;
}

.tracklist-facelift .track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(230, 126, 34, 0.22);
    background: rgba(13, 15, 20, 0.66);
}

.tracklist-facelift .track-item-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.tracklist-facelift .track-cover {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(230, 126, 34, 0.35);
    background: rgba(230, 126, 34, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tracklist-facelift .track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tracklist-facelift .track-cover i {
    color: var(--track-primary);
}

.tracklist-facelift .track-copy {
    min-width: 0;
}

.tracklist-facelift .track-title {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tracklist-facelift .track-artist {
    color: var(--track-muted);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tracklist-facelift .track-time {
    color: #d6dde3;
    font-size: 13px;
    border: 1px solid rgba(230, 126, 34, 0.32);
    border-radius: 999px;
    padding: 5px 10px;
    flex-shrink: 0;
}

.tracklist-facelift .track-empty,
.tracklist-facelift .track-error {
    text-align: center;
    color: #adb5bc;
    border: 1px dashed rgba(230, 126, 34, 0.36);
    border-radius: 14px;
    padding: 18px 14px;
    background: rgba(230, 126, 34, 0.06);
}

.tracklist-facelift .track-error {
    color: #ffd2d2;
    border-color: rgba(255, 120, 120, 0.38);
    background: rgba(255, 120, 120, 0.1);
}

.tracklist-facelift .tracklist_box {
    background: rgba(13, 15, 20, 0.66);
    border: 1px solid rgba(230, 126, 34, 0.24);
    border-radius: 14px;
    padding: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

.tracklist-facelift .tracklist_box * {
    color: inherit;
}

.tracklist-facelift .is-loading {
    opacity: 0.65;
}

@media only screen and (max-width: 991px) {
}

@media only screen and (max-width: 767px) {
    .tracklist-facelift .track-main-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracklist-facelift .track-frame {
        padding: 12px;
    }

    .tracklist-facelift .track-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .tracklist-facelift .track-time {
        margin-left: 64px;
    }
}

