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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.4;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 50px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
    fill: #e50914;
}

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

.language-selector {
    position: relative;
    background: rgba(0,0,0,0.7);
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector select {
    background: transparent;
    color: white;
    border: none;
    outline: none;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
}

.language-selector i {
    color: white;
    font-size: 14px;
}

/* Buttons */
.btn {
    padding: 7px 17px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-signin {
    background: #e50914;
    color: white;
}

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

.btn-getstarted {
    background: #e50914;
    color: white;
    font-size: 1.5rem;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-getstarted:hover {
    background: #f40612;
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    background: url('https://assets.nflxext.com/ffe/siteui/vlv3/5aecc44d-2a1f-4313-8399-98df20908b64/c5f8f999-0b21-4b2a-b1c8-710c5b187121/IN-en-20221114-popsignuptwoweeks-perspective_alpha_website_medium.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.125rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.625rem;
    margin-bottom: 30px;
}

.cta-text {
    font-size: 1.2rem;
    margin: 20px 0;
}

.email-form {
    display: flex;
    max-width: 650px;
    margin: 20px auto;
    gap: 0;
}

.email-form input {
    flex: 1;
    padding: 20px;
    font-size: 1rem;
    border: 1px solid #8c8c8c;
    border-radius: 2px;
    min-width: 450px;
}

.email-form input:focus {
    outline: none;
}

/* Features Sections */
.feature {
    padding: 70px 45px;
    border-top: 8px solid #222;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

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

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

.text-content p {
    font-size: 1.5rem;
}

.media-content {
    position: relative;
}

/* TV Section */
.tv-container {
    position: relative;
}

.tv-container img {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tv-video {
    position: absolute;
    top: 20%;
    left: 13%;
    width: 73%;
    height: 53%;
    overflow: hidden;
}

.tv-video video {
    width: 100%;
}

/* Mobile Section */
.mobile-container {
    position: relative;
}

.mobile-container img {
    width: 100%;
}

.download-box {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
}

.download-box img {
    height: 70px;
    width: auto;
}

.box-text .title {
    font-weight: 600;
    font-size: 1rem;
}

.box-text .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') center/contain no-repeat;
    margin-left: auto;
}

/* FAQ Section */
.faq {
    padding: 70px 45px;
    border-top: 8px solid #222;
    text-align: center;
}

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

.faq-container {
    max-width: 815px;
    margin: 0 auto 50px;
}

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

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

.faq-question:hover {
    background: #404040;
}

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

.faq-answer.open {
    display: block;
}

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

/* Footer */
.footer {
    padding: 70px 45px;
    border-top: 8px solid #222;
    color: #757575;
}

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

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

.call a {
    color: #757575;
}

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

.footer-links a {
    color: #757575;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-lang {
    margin-bottom: 20px;
    width: fit-content;
}

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

/* Responsive Design */
@media (max-width: 950px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .text-content h2 {
        font-size: 2.5rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .email-form input {
        min-width: auto;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .header {
        padding: 20px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .text-content h2 {
        font-size: 1.625rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question, .faq-answer {
        font-size: 1.125rem;
        padding: 16px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}