*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins;
background:#0f172a;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#020617;
}

nav a{
margin:0 10px;
color:white;
text-decoration:none;
}

nav a:hover{
color:#38bdf8;
}

.hero{
height:80vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:linear-gradient(120deg,#1e293b,#020617);
}

.hero h2{
font-size:3em;
margin-bottom:20px;
}

.hero button{
padding:12px 25px;
border:none;
background:#38bdf8;
color:white;
font-size:16px;
cursor:pointer;
border-radius:8px;
}

.radio-player{
padding:60px 20px;
text-align:center;
}

audio{
margin-top:20px;
width:300px;
}

.eventos{
padding:60px 20px;
text-align:center;
background:#020617;
}

.event-grid{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
flex-wrap:wrap;
}

.event-card{
background:#1e293b;
padding:20px;
border-radius:10px;
width:200px;
}

.comunidad{
padding:60px 20px;
text-align:center;
}

.chat{
padding:60px 20px;
background:#020617;
text-align:center;
}

.chat-box{
height:250px;
background:#1e293b;
margin:20px auto;
width:80%;
overflow-y:auto;
padding:10px;
border-radius:10px;
}

.chat-input{
display:flex;
justify-content:center;
gap:10px;
}

.chat-input input{
padding:10px;
width:250px;
border:none;
border-radius:5px;
}

.chat-input button{
padding:10px 15px;
background:#38bdf8;
border:none;
border-radius:5px;
color:white;
cursor:pointer;
}

footer{
text-align:center;
padding:20px;
background:#020617;
}