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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Header Styles */
.site-header-hk7m {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container-9jx2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link-3kp9 {
    text-decoration: none;
    color: #fff;
}

.logo-text-5vm1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4ecca3;
}

.main-nav-2ld8 ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link-6qw4 {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link-6qw4:hover {
    color: #4ecca3;
}

/* Hero Section */
.hero-section-8tn5 {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/edg202501.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.hero-title-4pk7 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle-1mx9 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-7bn2 {
    background: #4ecca3;
    color: #1a1a2e;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-7bn2:hover {
    background: #45b892;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 204, 163, 0.4);
}

/* Container */
.container-8hm3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Titles */
.section-title-5wp1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-align: center;
}

/* Movie Grid */
.movie-grid-3kl6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.movie-card-9jx4 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.movie-card-9jx4:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.movie-image-2pl7 {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.movie-info-6vn8 {
    padding: 20px;
}

.movie-title-1km5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.movie-desc-4tx9 {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.movie-meta-7wp2 {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

/* Features Section */
.features-section-5hm9 {
    background: #fff;
    padding: 80px 20px;
}

.features-grid-2nx7 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card-8kl3 {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card-8kl3:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.feature-icon-6pm4 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title-9ql1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.feature-text-3vm8 {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer-1nx5 {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content-7km2 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-text-4pl9 {
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Category Page Styles */
.category-header-2wp8 {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.category-title-5mn7 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-desc-8kx4 {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Bar */
.filter-bar-3ln9 {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-buttons-6pm5 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn-9kl2 {
    padding: 10px 25px;
    border: 2px solid #4ecca3;
    background: transparent;
    color: #1a1a2e;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn-9kl2:hover,
.filter-btn-9kl2.active {
    background: #4ecca3;
    color: #fff;
}

/* About Page */
.about-content-7nx8 {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.about-section-4ml6 {
    margin-bottom: 40px;
}

.about-heading-2kp7 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.about-text-9vl3 {
    color: #555;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-container-5wp9 {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-8kn4 {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group-3mx7 {
    margin-bottom: 25px;
}

.form-label-6pl2 {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-input-9kl8,
.form-textarea-2vn5 {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input-9kl8:focus,
.form-textarea-2vn5:focus {
    outline: none;
    border-color: #4ecca3;
}

.form-textarea-2vn5 {
    resize: vertical;
    min-height: 150px;
}

.submit-btn-7wp4 {
    background: #4ecca3;
    color: #1a1a2e;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn-7wp4:hover {
    background: #45b892;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 204, 163, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container-9jx2 {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav-2ld8 ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-title-4pk7 {
        font-size: 2rem;
    }

    .movie-grid-3kl6 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .filter-buttons-6pm5 {
        flex-direction: column;
    }
}
