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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #000000;
            color: white;
            height: auto;
            min-height: 100%;
        }

        .hero-bg {
            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%), url(./assets/bg.png);
            background-size: cover;
            background-position: center;
            height: 700px;
            position: relative;
            width: 100%;
        }

        .hero-overlay {
            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%);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 48px;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
            z-index: 20;
        }

        .logo {
            width: 144px;
            background-image: transparent;
        }

        .logo img {
            width: 100%;
        }

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

        .language-select {
            position: relative;
            display: inline-block;
        }

        .language-select select {
            background-color: rgba(0,0,0,0.4);
            border: 1px solid #6b7280;
            color: white;
            padding: 4px 28px 4px 32px;
            border-radius: 4px;
            font-size: 14px;
            appearance: none;
            cursor: pointer;
        }

        .language-select select:focus {
            outline: none;
            border-color: white;
        }

        .globe-icon {
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 14px;
        }

        .caret-icon {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 12px;
            pointer-events: none;
        }

        .sign-in-btn {
            background-color: #e50914;
            color: white;
            padding: 4px 16px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .sign-in-btn:hover {
            background-color: #c11119;
        }

        .hero-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 16px;
            z-index: 10;
            margin-top: 40px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 16px;
            max-width: 896px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-text {
            font-size: 20px;
            margin-bottom: 24px;
        }

        .email-form {
            display: flex;
            flex-direction: row;
            gap: 12px;
            width: 100%;
            max-width: 672px;
            align-items: center;
        }

        .input-wrapper {
            position: relative;
            width: 100%;
        }

        .email-input {
            display: block;
            padding: 20px 16px 8px 16px;
            width: 100%;
            color: white;
            background-color: rgba(0,0,0,0.4);
            border: 1px solid #6b7280;
            border-radius: 4px;
            font-size: 16px;
        }

        .email-input:focus {
            outline: none;
            border: 2px solid white;
        }

        .email-label {
            position: absolute;
            color: #9ca3af;
            transition: all 0.3s;
            transform: translateY(-16px) scale(0.75);
            top: 16px;
            z-index: 10;
            left: 16px;
            transform-origin: left;
        }

        .email-input:placeholder-shown + .email-label {
            transform: translateY(0) scale(1);
        }

        .email-input:focus + .email-label {
            transform: translateY(-16px) scale(0.75);
        }

        .get-started-btn {
            background-color: #e50914;
            color: white;
            font-size: 24px;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .get-started-btn:hover {
            background-color: #c11119;
        }

        .hero-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 64px;
            background: linear-gradient(to top, black, transparent);
            z-index: 0;
        }

        .divider-section {
            background-color: black;
            padding: 16px 48px;
        }

        .divider-line {
            height: 8px;
            background: linear-gradient(90deg, transparent 0%, #e50914 20%, #e50914 80%, transparent 100%);
            border-radius: 4px;
            max-width: 1152px;
            margin: 0 auto;
        }

        .trending-section {
            background-color: black;
            padding: 48px 48px;
            position: relative;
            z-index: 10;
        }

        .section-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .trending-container {
            position: relative;
        }

        .trending-scroll {
            display: flex;
            overflow-x: auto;
            gap: 32px;
            padding-bottom: 32px;
            scroll-snap-type: x mandatory;
        }

        .trending-scroll::-webkit-scrollbar {
            display: none;
        }

        .trending-scroll {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .movie-card {
            flex: none;
            width: 192px;
            position: relative;
            scroll-snap-align: start;
            transition: transform 0.3s;
            cursor: pointer;
        }

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

        .movie-number {
            -webkit-text-stroke: 4px #595959;
            color: black;
            font-weight: 900;
            font-size: 100px;
            position: absolute;
            bottom: -10px;
            left: -15px;
            z-index: 10;
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .movie-image {
            border-radius: 8px;
            width: 100%;
            height: 288px;
            object-fit: cover;
            margin-left: 24px;
        }

        .reasons-section {
            background-color: black;
            padding: 32px 48px;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .reason-card {
            background: linear-gradient(149deg, #192133 0%, #111827 100%);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .reason-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .reason-text {
            color: #9ca3af;
            font-size: 14px;
        }

        .reason-icon {
            position: absolute;
            bottom: 16px;
            right: 16px;
            font-size: 64px;
            opacity: 0.3;
            color: #581c87;
        }

        .faq-section {
            background-color: black;
            padding: 64px 48px;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-width: 1024px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: #2d2d2d;
            transition: background-color 0.2s;
        }

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

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

        .faq-icon {
            width: 32px;
            height: 32px;
            transition: transform 0.2s;
        }

        .faq-content {
            display: none;
            padding: 0 24px 24px 24px;
            border-top: 1px solid black;
        }

        .faq-content p {
            font-size: 20px;
            margin-top: 16px;
        }

        .faq-item.active .faq-content {
            display: block;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-cta {
            margin-top: 48px;
            text-align: center;
        }

        footer {
            background-color: black;
            color: #b3b3b3;
            padding: 64px 48px;
            border-top: 1px solid #2d2d2d;
        }

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

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            font-size: 14px;
            margin-bottom: 32px;
        }

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

        .footer-link {
            color: #b3b3b3;
            text-decoration: underline;
            cursor: pointer;
        }

        .footer-link:hover {
            color: white;
        }

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

        @media (max-width: 768px) {
            nav {
                padding: 24px 16px;
            }

            .logo {
                width: 96px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-text {
                font-size: 16px;
            }

            .email-form {
                flex-direction: column;
            }

            .get-started-btn {
                width: 100%;
                justify-content: center;
            }

            .reasons-grid {
                grid-template-columns: 1fr;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }

            .movie-card {
                width: 128px;
            }

            .movie-image {
                height: 192px;
            }

            .movie-number {
                font-size: 80px;
            }
        }