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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('fortnite.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.7) 0%, 
        rgba(255, 20, 147, 0.6) 50%, 
        rgba(75, 0, 130, 0.8) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(255, 20, 147, 0.8),
        0 0 40px rgba(138, 43, 226, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.5);
}

.fortnite {
    display: block;
    color: #ffffff;
    font-size: 2.8rem;
}

.festival {
    display: block;
    color: #ff14e6;
    font-size: 4rem;
    margin: -10px 0;
}

.radio {
    display: block;
    color: #00d4ff;
    font-size: 2.5rem;
}

/* Player Card */
.player-container {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.player-card {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.player-card:hover {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 100px rgba(255, 20, 147, 0.5);
    transform: translateY(-5px);
}

/* Status Indicator */
.player-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 20, 147, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.4);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff1493;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Play Button */
.player-controls {
    margin: 30px 0;
}

.play-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #8b0090 100%);
    border: 4px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(255, 20, 147, 0.4),
        0 0 60px rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(255, 20, 147, 0.6),
        0 0 80px rgba(255, 20, 147, 0.4);
}

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

.play-icon,
.pause-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hidden {
    display: none;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.volume-icon {
    width: 28px;
    height: 28px;
    color: #ff14e6;
    filter: drop-shadow(0 0 8px rgba(255, 20, 230, 0.5));
}

.volume-slider {
    width: 200px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, 
        #ff1493 0%, 
        #ff1493 80%, 
        rgba(255, 255, 255, 0.2) 80%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493, #8b0090);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493, #8b0090);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

/* Equalizer Visualization */
.equalizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 30px;
}

.bar {
    width: 8px;
    background: linear-gradient(to top, #ff1493, #00d4ff);
    border-radius: 4px;
    animation: equalize 0.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.bar:nth-child(1) {
    animation-delay: 0s;
}

.bar:nth-child(2) {
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    animation-delay: 0.3s;
}

.bar:nth-child(5) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes equalize {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 50px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }
    
    .fortnite {
        font-size: 2rem;
    }
    
    .festival {
        font-size: 3rem;
    }
    
    .radio {
        font-size: 1.8rem;
    }
    
    .player-card {
        padding: 30px 20px;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .play-icon,
    .pause-icon {
        width: 40px;
        height: 40px;
    }
    
    .volume-slider {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo-container {
        margin-bottom: 40px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .fortnite {
        font-size: 1.5rem;
    }
    
    .festival {
        font-size: 2.3rem;
    }
    
    .radio {
        font-size: 1.5rem;
    }
    
    .play-button {
        width: 90px;
        height: 90px;
    }
    
    .volume-slider {
        width: 120px;
    }
}
