body.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu ul {
    list-style: none !important;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    color: #ff0080;
}
/* ------------------ NAV MENU STYLING ------------------ */

/* Nav Container */
.nav-links {
    display: flex;
    align-items: center;
    background: #583d67;
    padding: 10px 20px;
    position: relative;
    border-radius: 40px;
}
span.page-numbers.current, a.page-numbers, span.page-numbers.dots
 {
    padding-right: 20px;
}

/* Hamburger Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Menu UL (Desktop View) */
.main-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.main-menu li {
    display: inline-block;
}

.main-menu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease-in-out;
}

.main-menu li a:hover,
.main-menu li.current-menu-item a {
    background: #ff4d4d;
    border-radius: 6px;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        background: #111;
        width: 100%;
        display: none;
        margin-top: 45px;
        text-align: center;
        padding: 10px 0;
        gap: 15px;
    }
    .nav-links{
        background: transparent !important;
    }

    .nav-links.active .main-menu {
        display: flex;
    }
}


.movie-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.movie-genre {
    text-decoration: none;
    color: #fff;
    background: #222;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

.movie-genre:hover {
    background: #ff4d4d;
    color:#202020;
}

.movie-genre.active {
    background: #ff4d4d;
    font-weight: bold;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 15px;
    width: 300px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    padding: 5px 10px;
    width: 100%;
    outline: none;
}

.search-bar i {
    color: rgba(255, 255, 255, 0.7);
}

.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-btn {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 1;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(to right, #ff0080, #ff6a4d);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ff6a4d, #ff0080);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 20px;
}
.section-header-new {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

.view-all {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Movie Grid */
.movie-grid {
    margin-bottom: 50px;
}
h2.movie-title a {
    color: white;
    text-decoration: none;
    text-transform: capitalize;
}

.movie-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.movie-info {
    padding: 15px;
}

h2.movie-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
    text-overflow: ellipsis;
}

.movie-description {
    font-size: 14px;
    line-height: 1.4;
    color: #ccc;
    margin-bottom: 15px;
    height: 47px;
    overflow: hidden;
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: #aaa;
}

.size, .rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: gold;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #ff0080, #ff6a4d);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.download-btn:hover {
    background: linear-gradient(to right, #ff6a4d, #ff0080);
}

/* Movie Categories Section */
.movie-categories {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    margin-bottom: 0px !important;
    scrollbar-width: thin;
}

.movie-category {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.movie-category:hover, .movie-category.active {
    background: linear-gradient(to right, #ff0080, #ff6a4d);
}

/* Categories Section */
.categories {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    margin-bottom: 40px;
    scrollbar-width: thin;
}

.category {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category:hover, .category.active {
    background: linear-gradient(to right, #ff0080, #ff6a4d);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    margin-top: 50px;
    border-radius: 20px 20px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff6a4d;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(to right, #ff0080, #ff6a4d);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Single Movie Page Styles */
.movie-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 40px 0;
    background: rgba(25, 25, 35, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.movie-poster {
    position: relative;
}

.movie-poster img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.movie-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.movie-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.movie-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.movie-meta {
    align-items: center;
}

.movie-meta span {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #ccc;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: gold;
}

.rating i {
    color: gold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn, .wishlist-btn {
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    font-size: 16px;
}

.download-btn {
    background: linear-gradient(to right, #ff0080, #ff6a4d);
    color: white;
}

.download-btn:hover {
    background: linear-gradient(to right, #ff6a4d, #ff0080);
    transform: translateY(-2px);
}

.wishlist-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.wishlist-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.movie-description {
    line-height: 1.6;
    font-size: 16px;
    color: #ccc;
}

.movie-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.info-item {
    font-size: 14px;
    color: #ccc;
}

.info-item strong {
    color: #ff6a4d;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Download Options Section */
.download-options {
    margin: 40px 0;
    background: rgba(25, 25, 35, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.download-options h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.quality-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quality-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
}
.single-quality-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 1px 3px 5px deepskyblue;
}
.download-section p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.quality-btn:hover {
    background: linear-gradient(to right, #ff0080, #ff6a4d);
    transform: translateY(-2px);
}

/* Related Movies Section */
.related-movies {
    margin: 40px 0;
    background: rgba(25, 25, 35, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.related-movies h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

/* Load More Button Styles */
.load-more-container {
    text-align: center;
    margin: 50px 0 30px;
    padding: 20px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff0080, #ff6a4d);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 100, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.load-more-btn .fa-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.load-more-btn .btn-text {
    transition: opacity 0.3s ease;
}

.load-more-btn.loading .btn-text {
    opacity: 0;
}

.load-more-btn.loading .fa-spinner {
    display: inline-block;
}

.pagination-info {
    margin-top: 15px;
    color: #fff;
    font-size: 14px;
}

.pagination-info span {
    color: #fff;
    font-weight: 600;
}

/*pop up search box*/
/* ========== Popup Overlay ========== */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* ========== Popup Box ========== */

.input-wrapper {
    position: relative;
    width: 100%;
}

.popup-search-input {
    width: 100%;
    padding: 14px 50px 14px 15px; /* Right side padding for icon */
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.popup-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 0;
}


.search-popup-box {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
}

/* Close button */
.search-popup-box .close-search {
    position: absolute;
    top: -8px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
    color: #222;
}

/* Search input */
.popup-search-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 16px;
    outline: none;
}

/* Search Icon in header */
.open-search-popup svg {
    width: 24px;
    height: 24px;
    cursor: pointer;
    fill: #fff; /* Change to your header color */
	margin-top: 5px;
}


/* Loading Animation */
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Success/Error Messages */
.download-message {
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
    font-weight: 600;
}

.download-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.download-error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Quality Badges */
.quality-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
}
.movie-title a {
    color: white;
    text-decoration: none;
    text-transform: capitalize;
}

.quality-4k { background: linear-gradient(45deg, #ff0080, #ff6a4d); }
.quality-1080p { background: linear-gradient(45deg, #2196F3, #21CBF3); }
.quality-720p { background: linear-gradient(45deg, #4CAF50, #8BC34A); }
.quality-480p { background: linear-gradient(45deg, #FF9800, #FFC107); }

/* Responsive Design */
@media (max-width: 992px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    
    .search-bar {
        width: 100%;
        max-width: 400px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .movie-hero {
        grid-template-columns: 250px 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .movie-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    
    .movie-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .movie-poster {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .movie-badges {
        flex-direction: row;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    
    .action-buttons {
        justify-content: center;
        flex-direction: column;
		max-width: max-content;
    }
    
    .download-btn, .wishlist-btn {
        width: 100%;
        justify-content: center;
    }
    
    .movie-info-grid {
        grid-template-columns: 1fr;
        width: 80%;
    }
    
    .quality-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .movie-hero {
        padding: 15px;
        margin: 20px 0;
    }
    
    .movie-title {
        font-size: 24px;
    }

    .movie-meta span {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .download-btn, .wishlist-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .download-options,
    .related-movies {
        padding: 20px 15px;
        margin: 30px 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0080, #ff6a4d);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6a4d, #ff0080);
    
    .user-btn-wrapper {
    position: relative;
    display: inline-block;
}

.user-btn {
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}

.user-menu {
    position: absolute;
    right: 0;
    top: 40px;
    background: #222;
    color: #fff;
    min-width: 200px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.user-menu .user-info {
    padding: 10px;
    border-bottom: 1px solid #444;
    background: #111;
}

.user-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-menu ul li {
    border-bottom: 1px solid #333;
}

.user-menu ul li a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}

.user-menu ul li a:hover {
    background: #444;
}

/* Modal base */
.auth-modal {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background: linear-gradient(180deg, #1e1e3f, #2a1d3d);
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Modal inner content */
.auth-modal-content {
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.auth-modal-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.auth-modal-content input[type="text"],
.auth-modal-content input[type="email"],
.auth-modal-content input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Buttons */
.auth-modal-content button,
.auth-modal-content .login-btn {
    width: 100%;
    background: #ff007f;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-modal-content button:hover {
    background: #ff3399;
}

/* Links */
.auth-modal-content a {
    display: inline-block;
    color: #ff99cc;
    font-size: 13px;
    margin-top: 6px;
    text-align: center;
    width: 100%;
    text-decoration: none;
}

.auth-modal-content a:hover {
    text-decoration: underline;
}

/* Logged in section */
.auth-logged-in .auth-link {
    display: block;
    background: rgba(255,255,255,0.1);
    margin: 6px 0;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    transition: background 0.3s;
}

.auth-logged-in .auth-link:hover {
    background: rgba(255,255,255,0.2);
}

.auth-welcome {
    text-align: center;
    margin-bottom: 12px;
    font-weight: bold;
}

.logout-btn {
    background: #ff007f;
    color: #fff;
}

/* Trailer Section Styles */
.trailer-section {
    margin: 40px 0;
    background: rgba(25, 25, 35, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trailer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.trailer-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 15px;
}

.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Watch Online Section */
.watch-online-section {
    margin: 40px 0;
    background: rgba(25, 25, 35, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.watch-online-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .trailer-section,
    .watch-online-section {
        padding: 20px 15px;
        margin: 30px 0;
    }
}

