<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wplayer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 997;
    background-color: rgb(var(--card));
    border-top: 1px solid rgba(var(--border));
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.wplayer-init {
    opacity: 0;
    visibility: hidden;
}

.wplayer-init .audioplayer-playpause .far:before {
    content: "\f04b";
    padding-left: 1px;
}

.audioplayer {
    max-width: 1100px; /* Match container width */
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
}

.audioplayer audio {
    display: none;
}

.audioplayer-stopped .audioplayer-playpause a {
    padding-left: 3px;
}

.audioplayer-bar {
    position: absolute;
    left: 0;
    top: -6px;
    height: 6px;
    width: 100%;
    border-radius: 0;
    margin: 0;
    background-color: rgba(var(--foreground), 0.1);
}

.audioplayer-bar-loaded {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: rgba(var(--foreground), 0.2);
    border-radius: 3px;
}

.audioplayer-bar-played {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 10;
    border-radius: 3px;
    background-color: rgb(var(--orange));
}

.audioplayer-bar-played:before {
    content: "";
    background-color: rgb(var(--orange));
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 50%;
    margin-top: -9px;
    z-index: 3;
}

.audioplayer-volume {
    position: relative;
    z-index: 100;
    margin-left: 20px;
    font-size: 18px;
}

.audioplayer-muted .fa-volume-up:before {
    content: "\f6a9";
}

.audioplayer-volume-button a {
    font-size: 24px;
    color: rgb(var(--muted-foreground));
    display: block;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.audioplayer-volume-adjust {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 30px;
    height: 100px;
    background-color: rgb(var(--card));
    padding: 10px;
    display: none;
    border: 1px solid rgba(var(--border));
    border-radius: 4px;
}

.audioplayer-volume-adjust &gt; div {
    width: 10px;
    height: 80px;
    border-radius: 0;
    position: relative;
    cursor: pointer;
    background-color: rgba(var(--foreground), 0.1);
    overflow: hidden;
}

.audioplayer-volume-adjust &gt; div &gt; div {
    width: 100% !important;
    background-color: rgb(var(--orange));
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.audioplayer-volume:hover .audioplayer-volume-adjust {
    display: block;
}

.ap-dl {
    font-size: 24px;
    color: rgb(var(--muted-foreground));
    margin-left: 20px;
    text-decoration: none;
}

.ap-time {
    font-size: 12px;
    color: rgb(var(--muted-foreground));
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.audioplayer-time-current:after {
    content: "/";
    display: inline;
    margin: 0 6px;
}

.ap-desc {
    width: 300px;
    display: flex;
    align-items: center;
}

.ap-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 3px;
    overflow: hidden;
}

.ap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-artist {
    font-size: 14px;
    margin-top: 5px;
    color: rgb(var(--muted-foreground));
}

.ap-title {
    font-size: 15px;
    color: rgb(var(--foreground));
    font-weight: 500;
}

.ap-btns {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.audioplayer-playpause a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 26px;
    border-radius: 50%;
    display: block;
    position: relative;
    margin: 0 20px;
    background-color: rgb(var(--orange));
    color: white;
}

.audioplayer-playpause a:hover {
    background-color: rgb(var(--orange-light));
    color: white;
}

.ap-prev,
.ap-next {
    cursor: pointer;
    color: rgb(var(--foreground));
    font-size: 18px;
}

.ap-prev:hover,
.ap-next:hover,
.audioplayer-volume-button a:hover,
.ap-dl:hover {
    opacity: 1;
    color: rgb(var(--blue-light));
}

/* Track items styling */
.track-item,
.snd-item {
    background-color: rgb(var(--card));
    padding: 10px 20px;
    border-radius: 4px;
    margin-bottom: 0.25rem;
    position: relative;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
    border: 1px solid rgba(var(--border));
}

.track-item:hover,
.snd-item:hover {
    background-color: rgb(var(--accent));
}

.track-item__artwork,
.snd-img {
    width: 41px;
    height: 41px;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.track-item__play,
.snd-play {
    cursor: pointer;
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
    color: rgb(var(--orange));
    border: 1px solid rgba(var(--border));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-item-played .la-play:before {
    content: "\f04c";
}

.track-item.js-item-current.js-item-played .track-item__play,
.snd-item.js-item-current.js-item-played .snd-play {
    background: rgb(var(--orange));
    border-color: rgb(var(--orange));
    color: white;
}

.track-item__info,
.snd-desc {
    display: block;
    flex: 1;
    min-width: 0;
}

.track-item__title,
.snd-title {
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: rgb(var(--foreground));
    text-decoration: none;
    transition: color 0.3s;
}

.track-item__title:hover,
.snd-title:hover {
    color: rgb(var(--blue-light));
}

.track-item__artist,
.snd-subtitle {
    font-size: 0.75rem;
    color: rgb(var(--muted-foreground));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 4px;
}

.track-item__artist:hover,
.snd-subtitle:hover {
    color: rgb(var(--blue-light));
}

.track-item__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.track-item__action {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    background-color: rgba(var(--foreground), 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    color: rgb(var(--muted-foreground));
    transition: color 0.3s;
    text-decoration: none;
}

.track-item__action:hover {
    color: rgb(var(--blue-light));
}

.snd-time {
    color: rgb(var(--muted-foreground));
    font-size: 13px;
    margin-left: 20px;
}

.fplay,
.btn--primary {
    width: 100%;
    border-radius: 4px;
    margin-top: 20px;
    padding: 10px 15px;
    color: white !important;
    background-color: rgb(var(--orange));
    border: none;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fplay:hover,
.btn--primary:hover {
    background-color: rgb(var(--orange-light));
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fdl,
.btn--secondary {
    width: 100%;
    border-radius: 4px;
    margin-top: 20px;
    padding: 10px 15px;
    color: rgb(var(--foreground)) !important;
    background-color: rgb(var(--secondary));
    border: 1px solid rgba(var(--border));
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.fdl:hover,
.btn--secondary:hover {
    background-color: rgb(var(--accent));
}

.fplay .la,
.fdl .la,
.btn--primary .icon,
.btn--secondary .icon {
    font-size: 24px;
    margin-right: 5px;
}

.fx-row {
    display: flex;
    flex-direction: row;
}

.fx-middle {
    align-items: center;
}

.fx-first {
    order: -1;
}

.fx-1 {
    flex: 1;
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-fit {
    position: relative;
    overflow: hidden;
}

.img-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.js-item-played .track-item__play-icon,
.js-item-current.js-item-played .track-item__play-icon {
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(var(--orange), 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.js-item-current {
    background-color: rgba(var(--primary), 0.1);
    border-left: 3px solid rgb(var(--primary));
    padding-left: calc(20px - 3px);
}

.dark .audioplayer-volume-adjust {
    background-color: rgb(var(--card));
    border-color: rgba(var(--border));
}

.dark .track-item,
.dark .snd-item {
    background-color: rgb(var(--card));
}

.dark .track-item:hover,
.dark .snd-item:hover {
    background-color: rgb(var(--accent));
}
</pre></body></html>