* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --netflix-red: #E50914;
    --netflix-black: #141414;
    --netflix-dark: #000000;
    --netflix-gray: #2F2F2F;
    --netflix-light-gray: #808080;
    --netflix-white: #FFFFFF;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--netflix-black);
    color: var(--netflix-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: var(--netflix-dark);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    font-weight: bold;
    color: var(--netflix-red);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--netflix-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--netflix-red);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video iframe {
        width: 177.78vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--netflix-red);
    color: var(--netflix-white);
}

.btn-primary:hover {
    background-color: #f40612;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--netflix-white);
    border: 2px solid var(--netflix-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--netflix-dark);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--netflix-gray);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--netflix-red);
}

.feature-card p {
    color: #b3b3b3;
    line-height: 1.8;
}

/* Content Sections */
.content-section,
.movies-section {
    padding: 100px 0;
}

.content-section {
    background-color: var(--netflix-black);
}

.movies-section {
    background-color: var(--netflix-dark);
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-row.reverse {
    direction: rtl;
}

.content-row.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--netflix-white);
}

.content-text p {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--netflix-gray) 0%, var(--netflix-black) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    border: 2px solid var(--netflix-red);
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background-color: var(--netflix-black);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.plan-card {
    background: var(--netflix-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--netflix-red);
    box-shadow: 0 10px 40px rgba(229, 9, 20, 0.4);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--netflix-gray) 0%, #1a0a0e 100%);
    border: 2px solid var(--netflix-red);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--netflix-red);
    color: var(--netflix-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--netflix-white);
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--netflix-red);
}

.plan-price .period {
    font-size: 1.2rem;
    color: #b3b3b3;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: #b3b3b3;
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    background-color: var(--netflix-red);
    color: var(--netflix-white);
}

.btn-plan:hover {
    background-color: #f40612;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--netflix-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: var(--netflix-gray);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--netflix-red);
}

.contact-card p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 25px;
}

.btn-contact {
    background-color: var(--netflix-red);
    color: var(--netflix-white);
}

.btn-contact:hover {
    background-color: #f40612;
}

/* Footer */
.footer {
    background-color: var(--netflix-dark);
    padding: 40px 0;
    border-top: 1px solid var(--netflix-gray);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--netflix-red);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer p {
    color: var(--netflix-light-gray);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        gap: 15px;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-row,
    .content-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 300px;
        font-size: 5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav {
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .feature-card,
    .contact-card {
        padding: 30px 20px;
    }
}