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

body{
background:#090909;
color:white;
}

header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
padding:15px;
background:#111;
border-bottom:2px solid red;
z-index:1000;
}

.logo{
font-weight:bold;
color:#ff2a2a;
}

nav a{
color:white;
margin-left:10px;
text-decoration:none;
}

.hero{
margin-top:70px;
position:relative;
}

.hero img{
width:100%;
height:420px;
object-fit:cover;
filter:brightness(0.5);
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
width:90%;
}

.hero-text h1{
font-size:2rem;
margin-bottom:10px;
}

.hero-text p{
margin-bottom:20px;
}

button{
padding:12px 20px;
border:none;
background:red;
color:white;
border-radius:10px;
font-weight:bold;
}

.countdown{
padding:40px 20px;
text-align:center;
}

.tickets{
padding:20px;
}

.ticket-card{
background:#151515;
padding:20px;
margin-bottom:15px;
border-radius:15px;
border:1px solid #222;
}

.ticket-card p{
color:#ff4d4d;
font-size:2rem;
margin:10px 0;
}

.lineup{
padding:20px;
}

.band-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.band{
background:#181818;
padding:25px;
text-align:center;
border-radius:12px;
}

.admin{
padding:20px;
}

.admin ul{
margin-top:10px;
line-height:2;
}

footer{
background:#111;
padding:30px 20px;
text-align:center;
margin-top:40px;
}

.apoio{
margin-top:15px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
color:#888;
}
