body {
    background-color: #f4f6fa;
    color: #001d7e;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding-bottom: 80px; /* Space for audio player */
}
.container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px 32px 32px;
    text-align: center;
    max-width: 400px;
}
h1 {
    color: #001d7e;
    font-size: 2rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 28px;
}
img {
    width: 300px;
    height: 92px;
    object-fit: contain;
    margin-bottom: 18px;
}
.brand-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #001d7e 60%, #9eba33 100%);
    border-radius: 8px 8px 0 0;
    margin-bottom: 24px;
}
@media (max-width: 480px) {
    .container {
        padding: 24px 8px;
        max-width: 95vw;
    }
    img {
        width: 90vw;
        max-width: 300px;
    }
}

/* Player styles */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #001d7e;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.player-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.station-info {
    display: flex;
    align-items: center;
}

.station-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 10px;
}

.live-indicator {
    background: #9eba33;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.player-controls {
    display: flex;
    align-items: center;
}

.play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9eba33;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.play-button:hover {
    background: #8da72e;
    transform: scale(1.05);
}

.play-button:active {
    transform: scale(0.95);
}

.play-icon, .stop-icon, .loading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play triangle icon */
.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

/* Stop square icon */
.stop-icon {
    width: 16px;
    height: 16px;
    background: #ffffff;
}

/* Loading animation */
.loading-icon {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .audio-player {
        height: 60px;
        padding: 0 10px;
    }
    
    .player-container {
        gap: 10px;
    }
    
    .station-name {
        font-size: 0.9rem;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
}
