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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("netflibg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
    color: white;
    padding: 0 50px;
}

.intro {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 150px;
}

#text h1 {
    font-size: 56px;
    font-weight: bold;
    color: #e50914;
}

.right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.right a {
    color: white;
    text-decoration: none;
}

select {
    padding: 8px 14px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    height: 35px;
    cursor: pointer;
}

.signin {
    background: #e50914;
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
    height: 35px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.signin:hover {
    background: #c11119;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.main {
    margin-top: 100px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
    max-width: 600px;
}

.para h2 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.para p {
    font-size: 15px;
    margin-bottom: 10px;
}

.btn {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.btn form {
    display: flex;
    gap: 10px;
}

.btn input {
    width: 300px;
    max-width: 100%;
    padding: 16px 18px;
    font-size: 18px;
    background-color: rgba(28, 27, 27, 0.75);
    color: white;
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-radius: 4px;
}

.btn input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.started {
    background-color: #e50914;
    color: white;
    padding: 8px 28px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    width: 200px;
    cursor: pointer;
}

.started:hover {
    background-color: #9d0910;
}

.trending {
    width: 100%;
    padding: 0 80px 80px;
    margin-top: 400px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}

.shows {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 10px 0;
}

.shows img {
    min-width: 170px;
    width: 170px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #333;
    border: 2px solid #444;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.shows img:hover {
    transform: scale(1.05);
    border-color: #e50914;
}

.reasons {
    width: 100%;
    padding: 40px 80px;
    
}

.reasons h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.reason {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.cards {
    background: linear-gradient(rgb(24, 24, 72), rgb(26, 11, 43));
    border-radius: 10px;
    height: 270px;
    width: 290px;
}

.cards h3 {
    margin-top: 20px;
    font-size: 23px;
    padding: 10px;
    text-align: left;
}

.cards p {
    padding: 10px;
    text-align: left;
}
.questions{
    gap: 10px;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1230px;
}
.question{
    font-weight: 600;
    padding:30px;
    background-color: #2f2f2f;
    font-size: 20px;
}
.question:hover{
    background-color: #222222;
}
.footer {
    width: 100%;
    background-color: #000;
    padding: 60px 100px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1230px;
    margin: 0 auto;
}

.footer-email {
    text-align: center;
    margin-bottom: 50px;
}

.footer-email p {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-form input {
    width: 44%;
    padding: 16px;
    font-size: 16px;
    background-color: rgba(22, 22, 22, 0.7);
    color: white;
    border: 1px solid rgba(128, 128, 128, 0.7);
    border-radius: 4px;
}

.footer-button {
    background-color: #e50914;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.footer-button:hover {
    background-color: #c11119;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    font-size: 16px;
    color: #ccc;
}

.footer-contact a {
    color: white;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 150px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column a {
    color: #ccc;
    font-size: 15px;
}

.footer-language {
    margin-bottom: 30px;
}

.footer-language select {
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.footer-country {
    margin-bottom: 20px;
}

.footer-country p {
    color: #ccc;
    font-size: 14px;
}

.footer-recaptcha p {
    color: #757575;
    font-size: 13px;
}

.footer-recaptcha a {
    color: #0071eb;
    text-decoration: none;
}

.footer-recaptcha a:hover {
    text-decoration: underline;
}


@media (max-width: 1280px) {
    .intro, .reasons {
        padding: 20px 40px;
    }
    .trending {
        padding: 70px;
        margin-top: 100px;
    }
    .shows img {
        min-width: 150px;
        width: 150px;
        height: 220px;
    }
    .cards {
        width: calc(25% - 19px);
    }
}

@media (max-width: 960px) {
    .intro {
        padding: 16px 24px;
    }
    #text h1 {
        font-size: 28px;
    }
    .right {
        gap: 8px;
    }
    .trending {
        padding: 150px 60px;
        margin-top: 50px;
    }
    .shows {
        gap: 20px;
    }
    .shows img {
        min-width: 140px;
        width: 140px;
        height: 200px;
    }
    .reasons {
        padding: 40px;
    }
    .reason {
        flex-wrap: wrap;
    }
    .cards {
        width: calc(50% - 13px);
        height: 200px;
    }
}

@media (max-width: 800px) {
    .intro {
        padding: 20px 32px;
    }
    #text h1 {
        font-size: 26px;
    }
    select {
        height: 33px;
        font-size: 14px;
        padding: 6px 12px;
    }
    .signin {
        height: 33px;
        font-size: 14px;
        padding: 6px 16px;
    }
    .main {
        padding: 60px 32px 40px;
        max-width: 90%;
    }
    .para h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }
    .para p {
        font-size: 16px;
    }
    .btn {
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
    }
    .btn form {
        width: 100%;
        max-width: 450px;
    }
    .btn input {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        background-color: rgba(22, 22, 22, 0.7);
        border: 1px solid rgba(128, 128, 128, 0.7);
    }
    .started {
        width: 80%;
        max-width: 350px;
        padding: 12px 24px;
        font-size: 17px;
    }
    .trending {
        padding: 50px 32px;
        margin-top: 80px;
    }
    .trending h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .shows {
        gap: 16px;
    }
    .shows img {
        width: 130px;
        height: 210px;
    }
    .reasons {
        padding: 40px 32px;
    }
    .reasons h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .reason {
        flex-direction: column;
        gap: 20px;
    }
    .cards {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
    .cards h3 {
        font-size: 21px;
        margin-top: 18px;
    }
    .cards p {
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 600px) {
    .intro {
        padding: 20px 24px;
    }
    #text h1 {
        font-size: 24px;
    }
    .right {
        gap: 10px;
    }
    select {
        height: 32px;
        font-size: 13px;
        padding: 6px 10px;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    .signin {
        height: 32px;
        font-size: 14px;
        padding: 6px 16px;
    }
    .main {
        padding: 80px 24px 40px;
        max-width: 100%;
    }
    .para h2 {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .para p {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .btn form {
        max-width: 500px;
        flex-direction: column;
        gap: 12px;
    }
    .started {
        width: 70%;
        max-width: 300px;
    }
    .trending {
        padding: 20px 24px;
        margin-top: 50px;
    }
    .trending h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .shows {
        gap: 12px;
    }
    .shows img {
        width: 90px;
        height: 150px;
    }
    .reasons {
        padding: 40px 24px;
    }
    .reasons h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .cards {
        min-height: 220px;
    }
    .cards h3 {
        font-size: 20px;
        margin-top: 16px;
    }
    .cards p {
        font-size: 14px;
        line-height: 1.5;
    }
    .footer {
        padding: 40px 24px;
    }
    
    .footer-form {
        flex-direction: column;
    }
    
    .footer-form input {
        width: 100%;
    }
    
    .footer-button {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
