@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

body {
    background-color: #000000;
    color: #00ff41;
    font-family: 'Source Code Pro', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.container {
    width: 90%;
    max-width: 800px;
    border: 1px solid #00ff41;
    padding: 20px 40px;
    background-color: rgba(0, 20, 0, 0.5);
}

header {
    text-align: center;
    border-bottom: 1px solid #00ff41;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    letter-spacing: 5px;
    margin: 0;
    text-shadow: 0 0 5px #00ff41;
}

.subtitle {
    color: #888;
    letter-spacing: 2px;
}

.status {
    color: #00ff41;
    animation: blink 2s infinite;
}

.stream {
    margin-bottom: 40px;
}

.stream h2 {
    font-size: 1.2em;
    letter-spacing: 2px;
    border-bottom: 1px dashed #008f25;
    padding-bottom: 5px;
}

.description {
    font-size: 0.9em;
    color: #888;
}

audio {
    width: 100%;
    margin-top: 10px;
}

audio::-webkit-media-controls-panel {
    background-color: #008f25;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-volume-slider {
    background-color: #c3ffce;
    border-radius: 50%;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #00ff41;
    color: #888;
}