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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 0;
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #FFC107;
}

.login-btn {
    background-color: #FFC107;
    color: #000;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #FFD54F;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.5;
}

.watch-btn {
    background-color: #FFC107;
    color: #000;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background-color: #FFD54F;
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #141414;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #1f1f1f;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.6;
}

/* New Content Section */
.new-content {
    padding: 100px 0;
    background-color: #FFC107;
}

.new-content .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    color: #000;
}

.content-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.discover-btn {
    background-color: #000;
    color: #FFC107;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: #1f1f1f;
    transform: scale(1.05);
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    width: 100%;
    max-width: 752px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.movie-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background-color: #000;
    text-align: center;
    padding: 40px 0;
    color: #b3b3b3;
}

/* Responsive */
@media (max-width: 1200px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features .container {
        grid-template-columns: 1fr;
    }
    
    .new-content .container {
        grid-template-columns: 1fr;
    }
    
    .content-image img {
        max-width: 100%;
    }
    
    .content-text h2 {
        font-size: 32px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}