/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.divider {
    height: 8px;
    background-color: #222;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('https://assets.nflxext.com/ffe/siteui/vlv3/9d3533b2-0e2b-40b2-95e0-ecd7979cc88b/a3873901-5b7c-46eb-b9fa-12fea5197bd3/IN-en-20240311-popsignuptwoweeks-perspective_alpha_website_large.jpg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 45px;
    z-index: 10;
}

.logo img {
    height: 45px;
}

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

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-selector i {
    position: absolute;
    left: 12px;
    color: white;
    font-size: 0.9rem;
}

.language-selector select {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: 1px solid #aaa;
    padding: 8px 26px 8px 30px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.signin-btn {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.signin-btn:hover {
    background-color: #f40612;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 950px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.125rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.625rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.email-form input {
    padding: 15px;
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
    min-height: 60px;
}

.email-form button {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    margin-top: 16px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.email-form button:hover {
    background-color: #f40612;
}

.bottom-form {
    margin-top: 50px;
}

.bottom-form p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.bottom-form .form-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Features Section */
.feature {
    padding: 70px 0;
}

.feature .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.feature.reverse .container {
    flex-direction: row-reverse;
}

.feature-content {
    width: 50%;
}

.feature-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.5rem;
    font-weight: 400;
}

.feature-media {
    width: 50%;
    position: relative;
}

.feature-media img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-video {
    position: absolute;
    top: 20%;
    left: 13%;
    width: 73%;
    height: 100%;
    max-height: 54%;
    z-index: 1;
    overflow: hidden;
}

.feature-video video {
    width: 100%;
    height: 100%;
}

.download-animation {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    width: 60%;
    min-width: 240px;
    z-index: 3;
}

.poster {
    margin-right: 16px;
}

.poster img {
    height: 72px;
}

.download-animation .text {
    flex-grow: 1;
}

.download-animation .title {
    font-weight: 500;
    font-size: 1rem;
}

.download-animation .downloading {
    color: #0071eb;
    font-size: 0.9rem;
}

.download-icon {
    width: 48px;
    height: 48px;
    background: url('https://assets.nflxext.com/ffe/siteui/acquisition/ourStory/fuji/desktop/download-icon.gif') no-repeat center center;
    background-size: 100%;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    text-align: center;
}

.faq h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-list {
    width: 100%;
    max-width: 815px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 8px;
}

.faq-question {
    background-color: #303030;
    color: white;
    padding: 24px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #414141;
}

.faq-answer {
    background-color: #303030;
    padding: 24px;
    margin-top: 1px;
    text-align: left;
    font-size: 1.5rem;
    display: none;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 70px 0 20px;
    color: #757575;
}

.footer .container {
    max-width: 1000px;
}

.call {
    margin-bottom: 30px;
    font-size: 1rem;
}

.call a {
    color: #757575;
    text-decoration: none;
}

.call a:hover {
    text-decoration: underline;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-column a {
    color: #757575;
    text-decoration: none;
    font-size: 13px;
}

.link-column a:hover {
    text-decoration: underline;
}

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

.footer-language select {
    padding: 12px 26px 12px 30px;
    font-size: 16px;
    background-color: #000;
    border: 1px solid #333;
}

.country {
    margin-top: 20px;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .feature .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    
    .feature.reverse .container {
        flex-direction: column;
    }
    
    .feature-content, .feature-media {
        width: 100%;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    .feature-content p {
        font-size: 1.2rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question, .faq-answer {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content h2 {
        font-size: 1.125rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .email-form input, .email-form button {
        min-height: 48px;
        font-size: 0.9rem;
    }
    
    .email-form button {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}