.radio-player {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}
.radio-player .btn-play {
    -webkit-appearance: none;
    appearance: none;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #E40716;
    font-size: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radio-player .btn-play:hover {
    background: #1a1a1a;
}
.radio-player .btn-play .btn-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    fill: currentColor;
    display: block;
}
.radio-player .btn-play .icon-pause { display: none; }
.radio-player .btn-play.playing .icon-play { display: none; }
.radio-player .btn-play.playing .icon-pause { display: block; }
.player-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto 1rem;
}
.player-tab {
    flex: 1 1 auto;
    padding: 0.6rem 1rem;
    border: 2px solid #000;
    border-radius: 8px;
    background: #E40716;
    color: #000;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}
.player-tab:hover { background: #c90614; }
.player-tab.active { background: #000; color: #E40716; }
.player-panel { display: none; }
.player-panel.active { display: block; }
.radio-player .player-right {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.radio-player .live-label {
    color: #000;
    font-size: 0.9rem;
}
.radio-player .live-idle { display: flex; align-items: center; }
.radio-player .live-playing { display: none; align-items: center; gap: 0.35rem; }
#player-live.is-playing .live-idle { display: none; }
#player-live.is-playing .live-playing { display: flex; }
.equalizer {
    display: flex;
    align-items: center;
    gap: 1px;
    height: 14px;
}
.equalizer span {
    width: 4px;
    height: 14px;
    background: #000;
    border-radius: 1px;
    transform-origin: bottom;
    animation: eq 0.6s ease-in-out infinite alternate;
}
.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.15s; }
.equalizer span:nth-child(3) { animation-delay: 0.3s; }
@keyframes eq {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}
.radio-player.seekable .progress-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.radio-player.seekable input[type="range"].seek {
    flex: 1;
    min-width: 0;
    accent-color: #000;
}
.radio-player.seekable input[type="range"].seek::-webkit-slider-runnable-track {
    height: 6px;
    background: linear-gradient(to right, #000 0%, #000 var(--range-pct-seek, 0%), #666 var(--range-pct-seek, 0%), #666 100%);
}
.radio-player.seekable input[type="range"].seek::-moz-range-track {
    height: 6px;
    background: linear-gradient(to right, #000 0%, #000 var(--range-pct-seek, 0%), #666 var(--range-pct-seek, 0%), #666 100%);
}
.radio-player.seekable input[type="range"].seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #fff;
    cursor: pointer;
    margin-top: -5px;
}
.radio-player.seekable input[type="range"].seek::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #fff;
    cursor: pointer;
    transform: translateY(2px);
}
.radio-player.seekable .time {
    font-size: 0.85rem;
    min-width: 4.5rem;
    text-align: right;
    flex-shrink: 0;
    color: #000;
}
.sound-player-wrap {
    max-width: 400px;
    margin: 0 auto;
}
.sound-cover {
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
}
.sound-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 800px) {
    .sound-player-wrap {
        border-radius: 8px;
        overflow: hidden;
    }
    .sound-cover {
        width: 100%;
        height: auto;
        border-radius: 0;
        margin: 0 auto 1rem;
    }
    .sound-cover img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}
body { padding-bottom: 56px; font-family: 'Anton', sans-serif; }
.ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 0.75rem 0;
    overflow: hidden;
    z-index: 1000;
}
.ticker-inner {
    display: flex;
    width: max-content;
    animation: ticker 20s linear infinite;
}
.ticker-inner a{
    color: #fff;
}
.ticker-inner span { white-space: nowrap; padding-right: 3rem; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}