* {
    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;
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f1f1f;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 2rem;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.logo:hover img {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8b5cf6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 1rem 1.5rem;
    border-top: 1px solid #1f1f1f;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #8b5cf6;
}

.mobile-menu.active {
    display: block;
}

/* Header Section */
.header-section {
    position: relative;
    background: linear-gradient(to right, rgba(109, 40, 217, 0.3), rgba(109, 40, 217, 0.2), rgba(245, 158, 11, 0.3));
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 4rem;
}

.header-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&q=80');
    opacity: 0.05;
    background-size: cover;
    background-position: center;
}

.header-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
}

.header-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.header-content p {
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Films Grid */
.films-grid {
    display: grid;
    gap: 3rem;
}

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

.library-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.film-container {
    display: flex;
    flex-direction: column;
}

.film-card {
    position: relative;
}

.film-poster {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: #1a1a1a;
}

.film-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.film-poster:hover img {
    transform: scale(1.1);
}

.play-button {
    width: 4rem;
    height: 4rem;
    background-color: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    padding-left: 0.25rem;
}

.film-info {
    margin-top: 1rem;
}

.film-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}

.film-metadata {
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.metadata-row {
    display: flex;
    margin-bottom: 0.5rem;
}

.metadata-row .label {
    color: #6b7280;
    min-width: 4.5rem;
    flex-shrink: 0;
}

.metadata-row .value {
    color: #d1d5db;
    flex: 1;
}

.metadata-row .value.status {
    color: #f59e0b;
    font-weight: 500;
}

.film-synopsis {
    margin-top: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Production Section */
.production-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1f1f1f;
}

.production-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.production-logos img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.production-logos img:hover {
    opacity: 1;
}

.production-text {
    text-align: center;
    color: #f59e0b;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Page Content */
.page-content {
    margin-top: 4rem;
    padding: 3rem 0;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-header p {
    color: #9ca3af;
    font-size: 1.125rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
    padding: 2rem 0;
}

.lightbox.active {
    display: block;
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    padding: 0.5rem;
}

.lightbox-close:hover {
    color: #8b5cf6;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.film-details {
    background-color: #171717;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.film-details h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
}

.film-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.meta-value {
    color: #fff;
    font-weight: 500;
}

.meta-value.status {
    color: #f59e0b;
}

.film-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.synopsis {
    color: #d1d5db;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid #1f1f1f;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 2rem;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.footer-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* About & Contact Pages */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #9ca3af;
    font-size: 1.125rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #f59e0b;
}

.contact-details h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #9ca3af;
}

.contact-form {
    background-color: #171717;
    border: 1px solid #1f1f1f;
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    border: 1px solid #374151;
    border-radius: 0.375rem;
    color: #fff;
    font-size: 0.875rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.success-message {
    padding: 1rem;
    background-color: rgba(22, 101, 52, 0.3);
    border: 1px solid #059669;
    border-radius: 0.5rem;
    color: #6ee7b7;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #8b5cf6;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #7c3aed;
}

/* Responsive */
@media (min-width: 768px) {
    .header-content {
        padding: 2rem 2rem;
    }
    
    .header-content h2 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .film-meta {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .production-logos img {
        height: 2.5rem;
    }
}

@media (max-width: 767px) {
    .nav-links.desktop {
        display: none;
    }
    
       .logo img:last-child {
        height: 1.75rem;  /* Makes only the text logo smaller */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-content h2 {
        font-size: 1.875rem;
    }
    
    .film-details {
        padding: 1.5rem;
    }
    
    .film-details h2 {
        font-size: 1.5rem;
    }
    
    .production-logos img {
        height: 3rem;
    }
    
    .lightbox-content {
        padding: 2rem 0;
    }
    
    .lightbox-close {
        top: -2.5rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-content {
        padding: 2.5rem 2rem;
    }
    
    .header-content h2 {
        font-size: 3rem;
    }
    
    .nav-container {
        padding: 1.25rem 2rem;
    }
    
    .logo img {
        height: 2.5rem;
    }
    
    .container {
        padding: 4rem 2rem;
    }
    
    .featured-grid {
        gap: 5rem;
    }
}