body {
    background-color: #222;
    color: #eee;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

h1, h2 {
    color: #00ff99;
}

.waveform {
    margin: 20px 0;
    background: #444;
    padding: 10px;
    border-radius: 6px;
}

.cue {
    background: #ffcc00;
    color: #000;
    padding: 10px;
    font-weight: bold;
    margin: 20px 0;
    border-radius: 4px;
}

.player-controls {
    margin-top: 8px;
}

.player-controls button {
    background: #00ff99;
    color: #000;
    border: none;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.player-controls button:hover {
    opacity: 0.85;
}

.radio-console {
    background: #2a2a2a;
    padding: 16px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid #333;
}

.console-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.console-controls button {
    background: #00ff99;
    color: #000;
    border: none;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.console-controls button:hover {
    background: #00cc77;
}

.time-display {
    margin-top: 10px;
    font-family: monospace;
    font-size: 18px;
    color: #00ff99;
}

.vocal-countdown {
    margin-left: 12px;
    font-size: 20px;
    font-weight: bold;
    font-family: monospace;
    color: #00ff99;
}

.vocal-countdown.warn {
    color: #ffcc00;
}

.vocal-countdown.danger {
    color: #ff4444;
}

@keyframes vocalFlash {
    0%   { background-color: transparent; }
    50%  { background-color: rgba(255, 68, 68, 0.3); }
    100% { background-color: transparent; }
}

.vocal-countdown.flash {
    animation: vocalFlash 0.6s infinite;
    padding: 4px 8px;
    border-radius: 4px;
}

.show-image {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.show-image img {
    width: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.track-meta {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.track-meta {
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #333;
}

.track-title {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.track-artist {
    display: block;
    font-size: 16px;
    color: #aaaaaa;
}

.track-intro {
    display: block;
    font-size: 14px;
    color: #00ff99;
    margin-top: 4px;
}