*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#000;
color:white;
overflow-x:hidden;
}

#bgVideo{

position:fixed;
right:0;
bottom:0;

min-width:100%;
min-height:100%;

object-fit:cover;

z-index:-2;

}

.overlay{

position:fixed;

width:100%;
height:100%;

background:rgba(0,0,0,.6);

z-index:-1;

}

header{

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 50px;

background:rgba(0,0,0,.5);

position:fixed;

width:100%;

}

.logo{

width:80px;

}

nav a{

color:white;

margin:15px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

nav a:hover{

color:red;

}

.hero{

height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

}

.hero h1{

font-size:80px;

color:red;

text-shadow:0 0 20px red;

}

.hero p{

font-size:25px;

margin:20px;

}

button{

padding:15px 35px;

background:red;

border:none;

color:white;

cursor:pointer;

font-size:18px;

border-radius:5px;

}

section{

padding:80px;

}

.gallery{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

margin-top:30px;

}

.gallery img{

width:100%;

border-radius:10px;

transition:.5s;

}

.gallery img:hover{

transform:scale(1.08);

}

.card{

background:#1d1d1d;

padding:25px;

margin:20px 0;

border-left:5px solid red;

}

footer{

padding:30px;

text-align:center;

background:#111;

margin-top:50px;

}

#countdown{

margin-top:25px;

font-size:30px;

color:yellow;

}