* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', Arial, sans-serif;
}

span{
    color: #ff0000;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

p {
    color: #fff;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Header Styles */
header {
    padding: 20px 60px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
}

.header-logo {
    height: 110px;
    width: auto;
}

.header-nav-text-glow {
    display: flex;
    gap: 20px;
    margin-right: 40px;
}

.header-nav-text-glow div {
    position: relative;
    display: flex;
    align-items: center;
}

.header-nav-text-glow a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.language-form {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-select-container {
    position: relative;
}

.language-select {
    padding: 8px 30px 8px 12px;
    font-size: 16px;
    background-color: #000000;
    color: white;
    border: 1px solid #333;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
}

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

.header-nav-button-login {
    background-color: #e50914;
    border-radius: 4px;
    padding: 7px 17px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s;
}

.header-nav-button-login:hover {
    background-color: #f40612;
}

.header-nav-button-login a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.header-nav-line {
    display: none;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    line-height: 0.9;
}

.header-nav-text-item {
    display: flex;
    align-items: center;
}

.header-nav-text-item a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s;
}

.header-nav-text-item a:hover {
    color: #e50914;
}

.header-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s;
}

.header-text:hover {
    color: #e50914;
}

.header-nav-text-glow {
    display: flex;
    gap: 20px;
}

.header-nav-text-glow div {
    position: relative;
    display: flex;
    align-items: center;
}

.text-purple {
    color: #9747FF;
}

.text-yellow {
    color: #FFD600;
}

.glow-purple:hover {
    text-shadow: 0 0 10px rgba(151, 71, 255, 0.7);
}

.glow-yellow:hover {
    text-shadow: 0 0 10px rgba(255, 214, 0, 0.7);
}

.header-nav-glow-icon-purple {
    margin-top: -20%;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-color: #000;
    overflow: hidden;
    background-image: url('../assets/background/Poster.png');
    background-size: cover;
    background-position: center;
    border-bottom: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
                rgba(0,0,0,0.9) 10%, 
                rgba(0,0,0,0.6) 30%, 
                rgba(0,0,0,0.2) 50%, 
                rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.hero-description {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.hero-signup {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.hero-form-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.hero-form {
    display: flex;
    max-width: 700px;
    width: 100%;
    flex-direction: row;
    gap: 10px;
}

.hero-input {
    flex: 1;
    padding: 20px 15px;
    border-radius: 4px;
    border: 1px solid #8c8c8c;
    font-size: 16px;
    background: #fff;
    color: #000;
    min-width: 400px;
}

.hero-input::placeholder {
    color: #8c8c8c;
}

.hero-input:focus {
    outline: none;
    border-color: #e50914;
}

.btn-start {
    background-color: #e50914;
    color: #fff;
    padding: 0 26px;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

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

.btn-start i {
    font-size: 18px;
}

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

/* Media queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-signup {
        font-size: 16px;
    }
    
    .hero-form {
        flex-direction: column;
    }
    
    .hero-input {
        min-width: unset;
        width: 100%;
    }
    
    .btn-start {
        width: 100%;
        font-size: 18px;
    }
}

/*Trending Movies Section*/
.trending-movies {
    padding: 50px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trending-movies-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    color: #fff;
    letter-spacing: 1px;
}

.movie-carousel {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    padding: 10px 0;
    width: 100%;
    justify-content: center;
    position: relative;
}

.movie-carousel::-webkit-scrollbar {
    display: none;
}

.movie-item {
    flex: 0 0 auto;
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.movie-poster {
    position: relative;
    width: 100%;
    height: 330px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    cursor: pointer;
}

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

.movie-poster:hover .movie-hover-overlay {
    opacity: 1;
}

.movie-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.movie-hover-overlay i {
    font-size: 42px;
    color: white;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-info {
    text-align: center;
    width: 100%;
}

.movie-title-vn {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.movie-title-en {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Features Section */
.features {
    padding: 60px 50px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

.features-grid {
    display: flex;
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    background: #121221;
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.feature-icon img {
    max-width: 60px;
    height: auto;
}

/* Partner Section */
.partner-container {
    padding: 80px 50px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.partner-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.partner-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #0066ff);
    margin: 20px auto 0;
    border-radius: 2px;
}

.partner-logo-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 180px;
    opacity: 1;
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .partner-container {
        padding: 60px 30px;
    }
    
    .partner-logo {
        gap: 40px;
    }

    .partner-logo-item {
        height: 100px;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .partner-container {
        padding: 50px 20px;
    }
    
    .partner-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .partner-logo {
        gap: 30px;
    }

    .partner-logo-item {
        height: 80px;
        width: 120px;
    }
}

/* FAQ */
.faq {
    padding: 50px;
    background-color: #000;
}

.faq h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.faq-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

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

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

.faq-question {
    width: 100%;
    background-color: #1D1D1D;
    border: none;
    padding: 18px 20px;
    text-align: left;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-weight: 500;
}

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

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive styles for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 30px 20px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px 40px 15px 15px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    header {
        padding: 15px 20px;
    }
    
    .hero-banner {
        height: 100vh;
        margin-top: -60px;
    }
    
    .hero-content-container {
        width: 90%;
        padding: 60px 30px;
        max-width: 900px;
    }
    
    .hero-content {
        padding-top: 0;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 22px;
    }
    
    .hero-signup {
        font-size: 18px;
    }
    
    .hero-input {
        width: 65%;
    }
    
    .btn-start {
        width: 35%;
        font-size: 18px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .footer-top-links {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 15px;
    }
    
    .header-nav-text-glow {
        gap: 15px;
        margin-right: 10px;
    }
    
    .header-nav-text-glow a {
        font-size: 16px;
    }
    
    .hero-banner {
        height: 100vh;
        margin-top: -50px;
    }
    
    .hero-content-container {
        width: 95%;
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .hero-content {
        padding-top: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .hero-signup {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-input {
        width: 100%;
        height: 50px;
    }
    
    .btn-start {
        width: 100%;
        height: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .movie-poster {
        height: 280px;
    }
    
    .movie-title-vn {
        font-size: 15px;
    }
    
    .movie-title-en {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .movie-carousel {
        gap: 20px;
    }
    
    .movie-item {
        width: 180px;
    }
    
    .movie-poster {
        height: 250px;
    }
    
    .movie-title-vn {
        font-size: 14px;
    }
    
    .movie-title-en {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
        height: auto;
    }

    .feature-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 40px 20px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .hero-content-container {
        width: 90%;
        padding: 60px 30px;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
        width: 95%;
        padding: 40px 20px;
        margin: 0 10px;
    }
}


/* Plan Options Section */
.plan-options {
    background-color: #000000;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/background/plan-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.plan-options::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
                rgba(0,0,0,0.95) 0%, 
                rgba(0,0,0,0.7) 50%, 
                rgba(0,0,0,0.95) 100%);
    z-index: 0;
}

.plan-options-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.plan-options-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.plan-option-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 35px;
    max-width: 500px;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-option-divider {
    width: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-option-divider-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #e50914, #0066ff);
}

.plan-option-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.plan-option-header h3 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.premium-badge, .rental-badge {
    cursor: pointer;
    padding: 7px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;

}

.premium-badge {
    background: linear-gradient(135deg, #ffb700, #ff8a00);
    color: #000;
}

.rental-badge {
    background: linear-gradient(135deg, #c400ff, #7000ff);
    color: #fff;
}

.plan-option-content {
    color: #fff;
}

.plan-option-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.plan-option-content .note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 22px;
    font-style: italic;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    border-left: 3px solid rgba(229, 9, 20, 0.5);
}
