*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#050505;
color:white;
background-image:var(--bg-image);
background-size:cover;
background-position:center;
background-attachment:fixed;
overflow-x:hidden;
}

.overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.78);
backdrop-filter:blur(4px);
z-index:-1;
}

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:rgba(10,10,10,.75);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,.05);
position:sticky;
top:0;
z-index:999;
}

.brand{
display:flex;
align-items:center;
gap:15px;
}

.logo{
width:90px;
height:90px;
border-radius:24px;
object-fit:cover;
box-shadow:0 10px 25px rgba(0,0,0,.5);
}

.brand h1{
font-size:28px;
font-weight:700;
}

.brand span{
font-size:14px;
opacity:.7;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
transition:.3s;
position:relative;
}

nav a:hover{
color:var(--primary);
}

.hero{
min-height:90vh;
display:flex;
justify-content:center;
align-items:center;
padding:50px 30px;
}

.hero-layout{
width:100%;
max-width:1300px;
display:flex;
flex-direction:column;
gap:35px;
align-items:center;
justify-content:center;
}

.player-card{
width:100%;
max-width:430px;
background:rgba(18,18,18,.92);
border-radius:38px;
padding:30px;
backdrop-filter:blur(25px);
box-shadow:
0 20px 60px rgba(0,0,0,.6),
0 0 0 1px rgba(255,255,255,.04);
transition:.3s;
}

.player-card:hover{
transform:translateY(-4px);
}

.cover-art{
width:100%;
height:360px;
object-fit:cover;
border-radius:28px;
margin-bottom:28px;
background:#222;
box-shadow:0 10px 35px rgba(0,0,0,.5);
}

.player-info{
text-align:center;
margin-bottom:25px;
}

.player-info h2{
font-size:42px;
font-weight:700;
margin-bottom:5px;
}

.player-info p{
font-size:20px;
opacity:.75;
}

.controls{
display:flex;
justify-content:center;
gap:22px;
margin-bottom:25px;
}

.controls button{
width:82px;
height:82px;
border-radius:50%;
border:none;
background:linear-gradient(135deg,var(--primary),#ff0033);
color:white;
font-size:30px;
cursor:pointer;
transition:.25s;
box-shadow:0 12px 30px rgba(255,0,70,.35);
}

.controls button:hover{
transform:scale(1.08);
}

#volume{
width:100%;
height:8px;
border-radius:10px;
appearance:none;
background:#444;
outline:none;
cursor:pointer;
}

#volume::-webkit-slider-thumb{
appearance:none;
width:20px;
height:20px;
border-radius:50%;
background:var(--primary);
box-shadow:0 0 10px rgba(255,0,70,.6);
}

.chat-side-card{
width:100%;
max-width:430px;
background:rgba(18,18,18,.92);
border-radius:38px;
padding:28px;
backdrop-filter:blur(25px);
box-shadow:
0 20px 60px rgba(0,0,0,.6),
0 0 0 1px rgba(255,255,255,.04);
}

.chat-side-card h2{
text-align:center;
font-size:42px;
margin-bottom:25px;
font-weight:700;
}

.chat-container-side{
overflow:hidden;
border-radius:26px;
background:white;
box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.chat-container-side iframe{
width:100%;
height:650px;
border:none;
background:white;
border-radius:26px;
transform:scale(1.01);
transform-origin:top left;
}

.schedule{
padding:90px 40px;
}

.schedule h2{
text-align:center;
font-size:48px;
margin-bottom:50px;
font-weight:700;
}

.schedule-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1300px;
margin:auto;
}

.program-card{
background:rgba(18,18,18,.88);
padding:30px;
border-radius:28px;
backdrop-filter:blur(15px);
transition:.3s;
box-shadow:
0 10px 35px rgba(0,0,0,.4),
0 0 0 1px rgba(255,255,255,.04);
}

.program-card:hover{
transform:translateY(-5px);
border:1px solid rgba(255,255,255,.08);
}

.program-card span{
display:inline-block;
margin-bottom:15px;
font-size:15px;
font-weight:700;
padding:8px 14px;
border-radius:30px;
background:rgba(255,0,70,.18);
color:#ff4b7d;
}

.program-card h3{
font-size:26px;
margin-bottom:10px;
}

.program-card p{
opacity:.75;
line-height:1.6;
}

footer{
padding:35px;
text-align:center;
background:rgba(0,0,0,.75);
border-top:1px solid rgba(255,255,255,.05);
margin-top:40px;
font-size:14px;
opacity:.75;
}

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:rgba(255,255,255,.18);
border-radius:20px;
}

@media(max-width:980px){

.topbar{
flex-direction:column;
gap:20px;
padding:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.player-info h2,
.chat-side-card h2,
.schedule h2{
font-size:34px;
}

.cover-art{
height:300px;
}

.controls button{
width:74px;
height:74px;
font-size:26px;
}

}

@media(max-width:600px){

.hero{
padding:25px 15px;
}

.player-card,
.chat-side-card{
padding:22px;
border-radius:28px;
}

.cover-art{
height:250px;
border-radius:20px;
}

.player-info h2,
.chat-side-card h2{
font-size:28px;
}

.schedule{
padding:60px 20px;
}

.schedule h2{
font-size:34px;
}

.program-card{
padding:24px;
}

}