body{
    margin:0;
    background:#000;
    color:white;
    font-family:Georgia, serif;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.logo{
    width:600px;
    max-width:80%;
}

.tagline{
    color:#ff2a2a;
    font-size:1.4rem;
}

.watch-btn{
    background:white;
    color:black;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    margin-top:20px;
    font-weight:bold;
}

section{
    padding:60px;
}

h2{
    font-size:2rem;
    margin-bottom:20px;
}

.cards{
    display:flex;
    gap:20px;
    overflow-x:auto;
}

.card{
    text-decoration:none;
    color:white;
    min-width:320px;
}

.card img{
    width:100%;
    border-radius:12px;
    transition:.3s;
}

.card:hover img{
    transform:scale(1.05);
}