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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ff6b00;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    color: #ff6b00;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #ff6b00;
}

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

.notification-marquee {
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    animation: marquee 30s linear infinite;
    color: #000;
    font-weight: 600;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 120px;
    padding: 2rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 1rem;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ff6b00;
    font-weight: bold;
}

/* Movie Catalog */
.movie-catalog {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.filter-sidebar {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

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

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff6b00;
    font-weight: 600;
}

.filter-input, .filter-select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.filter-input:focus, .filter-select:focus {
    outline: none;
    border-color: #ff6b00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.price-range {
    width: 100%;
    margin-top: 0.5rem;
}

.reset-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #ff6b00, #ff8533);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.reset-btn:hover {
    transform: translateY(-2px);
}

/* Movie Grid - Fixed 3x2 Layout (6 movies per page) */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 800px;
}

.movie-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.2);
    cursor: pointer;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

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

.movie-info {
    padding: 1.5rem;
}

.movie-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.movie-genre {
    color: #ff6b00;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.movie-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.view-details-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #ff6b00, #ff8533);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.view-details-btn:hover {
    transform: translateY(-2px);
}

/* Movie buttons container */
.movie-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.movie-buttons .view-details-btn {
    flex: 1;
    margin-bottom: 0;
}

.movie-buttons .whatsapp-btn {
    flex: 1;
    padding: 0.75rem;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.movie-buttons .whatsapp-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #128c7e, #075e54);
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid #ff6b00;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #ff6b00;
    font-size: 2rem;
    cursor: pointer;
}

.modal-poster {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin: 1rem 0;
}

.star {
    color: #ff6b00;
    font-size: 1.2rem;
}

/* Modal WhatsApp button */
.modal-content .whatsapp-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-content .whatsapp-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #128c7e, #075e54);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #ff6b00;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b00;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price {
    font-size: 2.5rem;
    color: #ff6b00;
    font-weight: bold;
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}



/* Footer */
.footer {
    background: #1a1a1a;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .movie-catalog {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        display: none;
    }
    
    .filter-sidebar.active {
        display: block;
        position: fixed;
        top: 120px;
        left: 1rem;
        right: 1rem;
        z-index: 1500;
    }
    
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
        min-height: 600px;
    }
    
    .modal-poster {
        float: none;
        width: 100%;
        height: 200px;
        margin-right: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Additional responsive breakpoints for movie grid */
@media (max-width: 480px) {
    .movie-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
        min-height: 1200px;
    }
    
    .movie-card {
        max-width: 100%;
    }
    
    .movie-poster {
        height: 250px;
    }
}

@media (min-width: 1200px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2.5rem;
        min-height: 800px;
    }
}

/* Channel Pills */
.channel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.channel-pill {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid #ff6b00;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #ff6b00;
    font-weight: 500;
}

/* OTT Platforms Marquee */
.ott-marquee {
    overflow: hidden;
    margin-top: 2rem;
    background: rgba(26, 26, 26, 0.5);
    padding: 1rem 0;
    border-radius: 10px;
}

.ott-track {
    display: flex;
    animation: scroll 15s linear infinite;
    gap: 2rem;
}

.ott-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.ott-logo:hover {
    filter: grayscale(0%);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b00;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials-marquee {
    overflow: hidden;
    margin-top: 2rem;
}

.testimonials-track {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 300px;
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-name {
    color: #ff6b00;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.email {
    background: #ff6b00;
    color: #000;
}

.payment-methods {
    margin-top: 3rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.payment-category {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.payment-category h4 {
    color: #ff6b00;
    margin-bottom: 1rem;
}

.payment-list {
    list-style: none;
}

.payment-list li {
    padding: 0.25rem 0;
    color: #ccc;
}

/* OTT Platforms Scrolling Section */
.ott-platforms {
    background: rgba(255, 107, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    margin: 2rem 0;
}

.ott-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.ott-scroll-track {
    display: flex;
    animation: ott-scroll 20s linear infinite;
    width: max-content;
}

.ott-scroll-track:hover {
    animation-play-state: paused;
}

.ott-item {
    flex-shrink: 0;
    margin: 0 1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ott-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.ott-logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ott-item:hover .ott-logo-container {
    transform: scale(1.1);
}

@keyframes ott-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for OTT scrolling */
@media (max-width: 768px) {
    .ott-scroll-track {
        animation-duration: 15s;
    }
    
    .ott-item {
        min-width: 100px;
        margin: 0 0.5rem;
    }
    
    .ott-logo-container {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

/* Footer and Admin Logo Styles */
.footer-logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.admin-logo-section {
    display: flex;
    align-items: center;
}

.admin-logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    max-width: 600px;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.3);
    color: #ff6b00;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: #ff6b00;
    color: #000;
    border-color: #ff6b00;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn:disabled:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: none;
}

.pagination-info {
    color: #ff6b00;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* No results message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #ccc;
    font-size: 1.2rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* Empty card placeholders */
.empty-card {
    visibility: hidden;
    pointer-events: none;
}

