* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1810 50%, #1f0f0a 100%);
    color: #fef3e2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* SPLASH SCREEN */
#splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #8b1a1a, #3a0808);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.splash-content {
    text-align: center;
    animation: pulseGlow 1.2s infinite alternate ease-in-out;
}

.splash-logo {
    max-width: 220px;
    width: 70%;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    animation: logoRise 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-radius: 35px;
}

.splash-motto {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffcc66, #ff9966);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.4s;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 5px rgba(255,160,80,0.3); transform: scale(1);}
    100% { text-shadow: 0 0 30px rgba(255,160,80,0.8); transform: scale(1.02);}
}

@keyframes logoRise {
    0% { transform: translateY(40px) scale(0.9); opacity: 0;}
    100% { transform: translateY(0) scale(1); opacity: 1;}
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
}

#main-content {
    opacity: 0;
    transition: opacity 1s ease;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

#main-content.visible {
    opacity: 1;
}

.hidden {
    display: none;
}

.container {
    width: 100%;
}

/* Hero & Logo */
.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 280px;
    width: 85%;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    border-radius: 40px;
}

.main-logo:hover {
    transform: scale(1.02);
}

.motto-animated h2 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(120deg, #ffb347, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    margin-top: 10px;
    animation: fadeSlide 1s ease-out;
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* Player Card - Glenti Colors */
.player-section {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.player-card {
    background: rgba(45, 20, 15, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 3rem;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 25px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,140,80,0.2);
    transition: all 0.2s;
}

.visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 60px;
    margin-bottom: 1rem;
}

.bar {
    width: 6px;
    height: 12px;
    background: #ff884d;
    border-radius: 10px;
    transition: height 0.2s ease;
}

.visualizer.playing .bar {
    animation: bounce 0.6s infinite alternate ease-in-out;
}

.visualizer.playing .bar:nth-child(1) { animation-delay: 0s; height: 20px; background: #ff6b35; }
.visualizer.playing .bar:nth-child(2) { animation-delay: 0.1s; height: 35px; background: #ff884d; }
.visualizer.playing .bar:nth-child(3) { animation-delay: 0.2s; height: 18px; background: #ffaa66; }
.visualizer.playing .bar:nth-child(4) { animation-delay: 0.3s; height: 42px; background: #ff6b35; }
.visualizer.playing .bar:nth-child(5) { animation-delay: 0.15s; height: 28px; background: #ff9955; }
.visualizer.playing .bar:nth-child(6) { animation-delay: 0.25s; height: 32px; background: #ff884d; }

@keyframes bounce {
    0% { transform: scaleY(0.4); opacity: 0.7;}
    100% { transform: scaleY(1.1); opacity: 1;}
}

.now-playing {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffccaa;
    margin-bottom: 1.2rem;
}

.now-playing i {
    margin-right: 8px;
    color: #ff6b35;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.2rem 0;
}

.control-btn {
    background: #ff6b35;
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #2a0a05;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}

.control-btn:hover {
    transform: scale(1.05);
    background: #ff884d;
    box-shadow: 0 0 18px rgba(255,107,53,0.7);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.5);
    padding: 8px 15px;
    border-radius: 60px;
}

#volume-slider {
    width: 100px;
    cursor: pointer;
    background: #ff6b35;
    height: 4px;
    border-radius: 5px;
}

.track-info {
    text-align: center;
    background: rgba(0,0,0,0.4);
    padding: 12px;
    border-radius: 40px;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-word;
    color: #ffddbb;
}

.track-info i {
    margin-right: 8px;
    color: #ff6b35;
}

/* Site Footer - Glenti theme */
.site-footer {
    margin-top: 4rem;
    border-top: 1px solid rgba(255,140,80,0.3);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.contact a, .contact i {
    color: #ff884d;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: 0.2s;
}

.contact a:hover {
    text-shadow: 0 0 8px #ff6b35;
    color: #ffaa66;
}

.onair-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.4);
    padding: 6px 18px;
    border-radius: 50px;
}

.onair-logo {
    height: 40px;
    width: auto;
    transition: transform 0.2s;
    border-radius: 12px;
}

.onair-logo:hover {
    transform: scale(1.05);
}

.onair-group span {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffccaa;
}

.copyright {
    font-size: 0.75rem;
    color: #ccaa88;
}

@media (max-width: 680px) {
    .footer-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    .player-card {
        padding: 1.2rem;
    }
    .control-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    .motto-animated h2 {
        font-size: 1.2rem;
    }
    .splash-motto {
        font-size: 1.1rem;
    }
}