body{
margin:0;
font-family:Arial;
background:#f5f7fb;
}

/* NAVBAR */

.navbar{
background:#1e3a8a;
padding:15px;
display:flex;
gap:20px;
flex-wrap:wrap;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:bold;
}

/* HERO */

.hero{
background:linear-gradient(to right,#1e3a8a,#3b82f6);
color:white;
text-align:center;
padding:40px 20px;
}

/* TOP VIDEO */

.top-video{
max-width:900px;
margin:0 auto 30px auto;
position:relative;
cursor:pointer;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.top-video video{
width:100%;
height:auto;
display:block;
}

/* VIDEO TEXT OVERLAY */

.video-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:rgba(0,0,0,0.55);
color:white;
font-size:20px;
padding:15px;
text-align:center;
font-weight:bold;
}

.container{
max-width:1000px;
margin:50px auto;
padding:20px;
}

/* CARDS */

.card{
display:flex;
background:white;
margin-bottom:30px;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.card img{
width:300px;
height:200px;
object-fit:cover;
}

.card div{
padding:20px;
}

/* FOOTER */

footer{
text-align:center;
background:#111827;
color:white;
padding:25px;
margin-top:60px;
}

footer a{
color:#ccc;
margin:0 10px;
text-decoration:none;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.card{
flex-direction:column;
}

.card img{
width:100%;
height:220px;
}

.hero{
padding:30px 15px;
}



}
.fake-play{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90px;
height:90px;
background:rgba(0,0,0,0.6);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
pointer-events:none;
}

.fake-play::after{
content:'';
border-left:25px solid white;
border-top:15px solid transparent;
border-bottom:15px solid transparent;
margin-left:5px;
}

/* Overlay text */

.video-overlay{
position:absolute;
bottom:0;
left:0;
right:0;
background:rgba(0,0,0,0.55);
color:white;
font-size:20px;
padding:15px;
text-align:center;
font-weight:bold;
}