/* =========================
GLOBAL
========================= */

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

body{
font-family:'Poppins',sans-serif;
background:#0b0b0b;
color:white;
line-height:1.6;
}


/* =========================
NAVBAR
========================= */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#000;
border-bottom:2px solid #ff0066;
position:sticky;
top:0;
z-index:999;
}

.logo{
font-family:'Orbitron',sans-serif;
font-size:24px;
color:#ff0066;
letter-spacing:2px;
}

.navbar nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.navbar nav a:hover{
color:#ff0066;
}


/* =========================
HERO PLAYER
========================= */

.hero{
text-align:center;
padding:120px 20px;
background:linear-gradient(180deg,#0a0a0a,#141414);
}

.hero h1{
font-size:50px;
font-family:'Orbitron',sans-serif;
margin-bottom:10px;
}

.hero p{
color:#aaa;
margin-bottom:40px;
}


/* RADIO PLAYER */

.radio-player{
display:inline-block;
padding:25px 40px;
background:#111;
border-radius:12px;
border:1px solid #333;
box-shadow:0 0 20px rgba(255,0,102,0.4);
}

#playBtn{
background:#ff0066;
border:none;
padding:12px 25px;
border-radius:30px;
color:white;
font-size:16px;
cursor:pointer;
margin-bottom:15px;
transition:0.3s;
}

#playBtn:hover{
background:#ff2c85;
box-shadow:0 0 15px #ff0066;
}

.nowplaying{
margin-top:10px;
}

#tracktitle{
color:#ff0066;
font-weight:bold;
margin-top:5px;
}


/* =========================
LISTENERS PANEL
========================= */

.listeners{
margin-top:40px;
font-size:18px;
color:#ccc;
}

#listeners{
margin-top:10px;
color:#ff0066;
}


/* =========================
SECTIONS
========================= */

section{
padding:80px 20px;
text-align:center;
}

section h2{
font-size:32px;
margin-bottom:40px;
font-family:'Orbitron',sans-serif;
color:#ff0066;
}


/* =========================
SHOUTOUTS
========================= */

#shoutout-container{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.shout{
background:#111;
padding:15px 25px;
border-radius:30px;
border:1px solid #333;
transition:0.3s;
}

.shout:hover{
background:#ff0066;
}


/* =========================
DJ OF WEEK
========================= */

.dj-card{
max-width:300px;
margin:auto;
background:#111;
border-radius:15px;
overflow:hidden;
border:1px solid #333;
transition:0.3s;
}

.dj-card img{
width:100%;
display:block;
}

.dj-card h3{
margin-top:15px;
color:#ff0066;
}

.dj-card p{
padding:10px 20px 20px;
color:#aaa;
}

.dj-card:hover{
transform:translateY(-6px);
box-shadow:0 0 25px rgba(255,0,102,0.5);
}


/* =========================
UNSIGNED ARTIST
========================= */

.artist{
max-width:300px;
margin:auto;
background:#111;
border-radius:15px;
overflow:hidden;
border:1px solid #333;
}

.artist img{
width:100%;
}

.artist h3{
margin-top:15px;
color:#ff0066;
}

.artist p{
padding:10px 20px 20px;
color:#aaa;
}


/* =========================
EVENTS
========================= */

.event{
background:#111;
padding:20px;
max-width:400px;
margin:auto;
border-radius:10px;
border:1px solid #333;
}

.event h3{
color:#ff0066;
}


/* =========================
SUPPORT
========================= */

.support button{
margin-top:20px;
padding:12px 30px;
background:#ff0066;
border:none;
border-radius:30px;
color:white;
cursor:pointer;
transition:0.3s;
}

.support button:hover{
background:#ff2c85;
box-shadow:0 0 20px #ff0066;
}


/* =========================
REVIEWS
========================= */

.review{
background:#111;
max-width:500px;
margin:20px auto;
padding:20px;
border-radius:10px;
border:1px solid #333;
color:#ccc;
}


/* =========================
FOOTER
========================= */

footer{
background:#000;
padding:30px;
text-align:center;
border-top:1px solid #333;
margin-top:60px;
}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

.navbar{
flex-direction:column;
}

.navbar nav{
margin-top:10px;
}

.navbar nav a{
margin:10px;
display:inline-block;
}

.hero h1{
font-size:34px;
}

section{
padding:60px 15px;
}

}