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

body{
    margin:0;
    min-height:100vh;
    font-family:Segoe UI, Arial, sans-serif;
    overflow-x:hidden;
    background:#38BDF8;
}

.background{
    position:fixed;
    inset:0;
    z-index:-1;

    background:linear-gradient(
        180deg,
        #38BDF8 0%,
        #0EA5E9 35%,
        #F97316 75%,
        #DC2626 100%
    );
}

.player-card{
position:relative;
z-index:10;
width:450px;
max-width:90%;
margin:100px auto;
padding:40px;
text-align:center;
background:rgba(15,23,42,.85);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.1);
border-radius:25px;
color:white;
box-shadow:0 0 40px rgba(37,99,235,.3);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 999px;

    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.15);

    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;

    animation: float 3s ease-in-out infinite;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff2d2d;

    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,45,45,.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(255,45,45,0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,45,45,0);
    }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

h1{
font-size:3rem;
margin-bottom:10px;
}

.subtitle{
color:#94a3b8;
margin-bottom:30px;
}

#playBtn{
width:100%;
padding:15px;
border:none;
border-radius:12px;
cursor:pointer;
background:#2563eb;
color:white;
font-size:1.1rem;
font-weight:bold;
transition:.2s;
}

#playBtn:hover{
transform:translateY(-2px);
}

.volume-section {
    margin: 25px 0;
    text-align: left;
}

.volume-section label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

#volumeSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    outline: none;
    cursor: pointer;
}

/* Chrome, Edge, Opera */
#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid #ffffff;
    box-shadow: 0 0 15px rgba(59,130,246,0.5);
    transition: 0.2s ease;
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Firefox */
#volumeSlider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 15px rgba(59,130,246,0.5);
    cursor: pointer;
}

input[type="range"]{
width:100%;
}

.discord-btn{
display:block;
margin-top:25px;
padding:15px;
background:#5865F2;
color:white;
text-decoration:none;
border-radius:12px;
font-weight:bold;
}

.station-logo {
    width: 250px;
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
}

audio {
    width: 100%;
    margin: 20px 0;
    border-radius: 12px;
}

.status {
    margin: 10px 0 20px;
    font-weight: 600;
    opacity: 0.9;
}
