*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:black;
    color:white;
}

.hero{
    background-image:url("hero.png");
    background-size:cover;
    background-position:center;
    height:100vh;
}
.overlay{
    background:rgba(0,0,0,0.6);
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.overlay h1{
    font-size:48px;
    max-width:700px;
}

.overlay h3{
    margin-top:20px;
    font-size:25px;
}

.overlay p{
    margin-top:20px;
    font-size:18px;
}

.email-box{
    margin-top:25px;
}

.email-box input{
    padding:15px;
    width:300px;
}

.email-box button{
    padding:15px 25px;
    background:red;
    color:white;
    border:none;
    font-size:18px;
    cursor:pointer;
}
/* Navbar */

.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

.logo{
    width: 70px;
}

.nav-buttons{
    display:flex;
    gap:15px;
}

.language{
    background:transparent;
    color:white;
    border:1px solid white;
    padding:8px 18px;
    border-radius:5px;
    cursor:pointer;
}

.signin{
    background:#e50914;
    color:white;
    border:none;
    padding:8px 18px;
    border-radius:5px;
    cursor:pointer;
}

.signin:hover{
    background:#c11119;
}
/* TV Section */

.tv-section{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 100px;
    border-top:8px solid #232323;
    background:black;
}

.tv-text{
    width:50%;
}

.tv-text h1{
    font-size:50px;
    margin-bottom:20px;
}

.tv-text p{
    font-size:24px;
    line-height:35px;
}

.tv-image{
    width:50%;
    text-align:center;
}

.tv-image img{
    width:100%;
    max-width:500px;
}
/* Mobile Section */

.mobile-section{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:80px 100px;
    border-top:8px solid #232323;
    background:black;
}

.mobile-image{
    width:70%;
    text-align:center;
}

.mobile-image img{
    width:90%;
    max-width:420px;
}

.mobile-text{
    width:50%;
}

.mobile-text h1{
    font-size:40px;
    margin-bottom:20px;
}

.mobile-text p{
    font-size:24px;
    line-height:35px;
}
/* Devices Section */

.devices-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 100px;
    border-top:8px solid #232323;
    background:black;
}

.devices-text{
    width:50%;
}

.devices-text h1{
    font-size:50px;
    margin-bottom:20px;
}

.devices-text p{
    font-size:24px;
    line-height:35px;
}

.devices-image{
    width:50%;
    text-align:center;
}

.devices-image img{
    width:100%;
    max-width:400px;
}

/* Kids Section */

.kids-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px;
    border-top: 8px solid #232323;
    background: black;
}

.kids-image{
    width:60%;
    text-align:center;
}

.kids-image img{
    width:120%;
    max-width:500px;
}

.kids-text{
    width:50%;
}

.kids-text h1{
    font-size:50px;
    margin-bottom:20px;
}

.kids-text p{
    font-size:24px;
    line-height:35px;
}
/* FAQ Section */

.faq{
    background:black;
    padding:80px 100px;
    border-top:8px solid #232323;
}

.faq h1{
    text-align:center;
    font-size:50px;
    margin-bottom:40px;
}

.faq-box{
    background:#2d2d2d;
    color:white;
    padding:25px;
    font-size:24px;
    margin-bottom:10px;
    cursor:pointer;
}

.faq-box:hover{
    background:#414141;
}
/* Footer */

.footer{
    background:black;
    color:#999;
    padding:50px 100px;
    border-top:8px solid #232323;
}

.footer p{
    margin-bottom:20px;
}

.footer-links{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.footer-links a{
    color:#999;
    text-decoration:none;
}

.footer-links a:hover{
    text-decoration:underline;
}@media(max-width:768px){

.navbar{
    padding:20px;
}

.logo{
    width:100px;
}

.overlay h1{
    font-size:35px;
}

.overlay h3{
    font-size:20px;
}

.email-box{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.email-box input{
    width:100%;
}

.tv-section,
.mobile-section,
.devices-section,
.kids-section{
    flex-direction:column;
    text-align:center;
    padding:50px 20px;
}

.tv-text,
.mobile-text,
.devices-text,
.kids-text,
.tv-image,
.mobile-image,
.devices-image,
.kids-image{
    width:100%;
}

.tv-text h1,
.mobile-text h1,
.devices-text h1,
.kids-text h1{
    font-size:35px;
}

.tv-text p,
.mobile-text p,
.devices-text p,
.kids-text p{
    font-size:20px;
}

.faq{
    padding:50px 20px;
}

.faq h1{
    font-size:35px;
}

.faq-box{
    font-size:18px;
}

.footer{
    padding:40px 20px;
}

.footer-links{
    grid-template-columns:1fr;
}

}

.copyright{
    color:white;
}