* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #1a1a1a;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.player-wrapper {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

audio {
    width: 100%;
    outline: none;
    border-radius: 10px;
}

audio::-webkit-media-controls-panel {
    background: white;
}

.status {
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
}

.live-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff3333;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

@media (max-width: 600px) {
    .container {
        padding: 25px;
    }

    h1 {
        font-size: 2em;
    }
}
