body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top, #263b78 0%, #111a35 60%, #080d1a 100%);
    background-attachment: fixed;
    color: #e2e8f0;
    text-align: center;
    margin: 0;
    padding: 40px 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.banner {
    max-width: 650px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.status-badge.live {
    background-color: rgba(255, 68, 68, 0.15);
    color: #ff5555;
    border: 1px solid rgba(255, 68, 68, 0.3);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.status-badge.offline {
    background-color: rgba(160, 170, 191, 0.1);
    color: #a0aabf;
    border: 1px solid rgba(160, 170, 191, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff5555;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #ff5555;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 85, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 85, 85, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 85, 0); }
}

#player-container {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: rgba(13, 22, 51, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.5s ease;
}

#player-container.live-glow {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.05);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.offline-msg {
    color: #a0aabf;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 20px;
    line-height: 1.6;
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    color: #718096;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #e2e8f0;
}