* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header/Navigation */
        .header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #d90000;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #d90000;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo::before {
            content: "🎭";
            font-size: 1.8rem;
        }

        .logo img {
            max-width: 120px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 8px 16px;
            border-radius: 6px;
        }
        
        .nav-menu a:hover {
            color: #d90000;
            background: rgba(130, 180, 64, 0.1);
        }
        
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .search-box {
            background: rgba(255,255,255,0.1);
            border: 2px solid transparent;
            padding: 12px 45px 12px 20px;
            border-radius: 25px;
            color: white;
            font-size: 16px;
            width: 300px;
            transition: all 0.3s ease;
        }
        
        .search-box:focus {
            outline: none;
            border-color: #d90000;
            background: rgba(255,255,255,0.15);
            width: 350px;
        }
        
        .search-box::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .search-btn {
            position: absolute;
            right: 15px;
            background: none;
            border: none;
            color: #d90000;
            font-size: 18px;
            cursor: pointer;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(130, 180, 64, 0.1);
            color: #d90000;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23111" width="1200" height="600"/><circle fill="%2382b440" opacity="0.1" cx="200" cy="150" r="80"/><circle fill="%23a8d456" opacity="0.1" cx="900" cy="400" r="120"/><circle fill="%2300bcd4" opacity="0.1" cx="600" cy="300" r="100"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #d90000, #ff0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #cccccc;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: bold;
            color: #d90000;
        }
        
        .stat-label {
            color: #cccccc;
            font-size: 0.9rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, #d90000, #a8d456);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(130, 180, 64, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(130, 180, 64, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 35px;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: white;
            color: #0a0a0a;
        }
        
        /* Content Categories */
        .categories {
            padding: 60px 20px;
            background: #0f0f0f;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            text-align: center;
            color: white;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .category-card {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(130, 180, 64, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .category-card:hover::before {
            left: 100%;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            border-color: #d90000;
            box-shadow: 0 10px 30px rgba(130, 180, 64, 0.2);
        }
        
        .category-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .category-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }
        
        .category-desc {
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .category-count {
            background: #d90000;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 15px;
            display: inline-block;
        }
        
        /* Movie Grid */
        .movie-section {
            padding: 60px 20px;
            background: #0a0a0a;
        }
        
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .movie-card {
            background: #1a1a1a;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
        }
        
        .movie-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px #d900004d;
            border-color: #d90000;
        }
        
        .movie-poster {
            width: 100%;
            height: 280px;
            background: linear-gradient(45deg, #333, #555);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .poster-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(217 0 0 / 80%), rgb(255 0 0 / 80%));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .movie-card:hover .poster-overlay {
            opacity: 1;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 20;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .play-icon::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 10px solid white;
            border-top: 7px solid transparent;
            border-bottom: 7px solid transparent;
            margin-left: 3px;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
        }

        .movie-card:hover .play-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.2);
        }
        
        .movie-info {
            padding: 20px;
        }
        
        .movie-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
            line-height: 1.3;
        }
        
        .movie-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .movie-year {
            color: #cccccc;
            font-size: 0.9rem;
        }
        
        .movie-rating {
            background: #d90000;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .movie-genre {
            color: #888;
            font-size: 0.85rem;
        }
        
        /* SEO Content Sections */
        .seo-content {
            padding: 80px 20px;
            background: #0f0f0f;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .main-content {
            background: rgba(255,255,255,0.02);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .sidebar-content {
            background: rgba(255,255,255,0.02);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .content-title {
            font-size: 2rem;
            color: #d90000;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .content-text {
            color: #cccccc;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .content-text strong {
            color: #fff;
            font-weight: 600;
        }
        
        .sidebar-title {
            font-size: 1.5rem;
            color: #d90000;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            color: #cccccc;
        }
        
        .sidebar-list li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #d90000;
        }
        
        .sidebar-list a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .sidebar-list a:hover {
            color: #d90000;
        }
        
        /* Features Section */
        .features {
            padding: 80px 20px;
            background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255,255,255,0.02);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: rgba(130, 180, 64, 0.05);
            border-color: #d90000;
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            color: #d90000;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }
        
        .feature-desc {
            color: #cccccc;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: #0a0a0a;
        }
        
        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 25px 30px;
            background: rgba(130, 180, 64, 0.1);
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            transition: background 0.3s ease;
            position: relative;
        }
        
        .faq-question:hover {
            background: rgba(130, 180, 64, 0.2);
        }
        
        .faq-question::after {
            content: "+";
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #cccccc;
            line-height: 1.8;
        }
        
        .faq-answer.active {
            padding: 25px 30px;
            max-height: 200px;
        }
        
        /* Alternatives Section */
        .alternatives {
            padding: 80px 20px;
            background: #0f0f0f;
        }
        
        .alternatives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .alternative-card {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .alternative-card:hover {
            transform: translateY(-5px);
            border-color: #d90000;
            box-shadow: 0 10px 30px rgba(130, 180, 64, 0.2);
        }
        
        .alternative-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .alternative-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }
        
        .alternative-desc {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .alternative-link {
            display: inline-block;
            background: #d90000;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .alternative-link:hover {
            background: #ff0000;
            transform: translateY(-2px);
        }
        
        /* Footer */
        .footer {
            background: #0a0a0a;
            padding: 60px 20px 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-section h3 {
            color: #d90000;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #d90000;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
        }
        
        
        /* Mobile Responsive */
        @media (max-width: 768px) {

            .section-title {
                font-size: 1.5rem;
            }
            .nav-container {
                flex-direction: column;
                gap: 0;
                padding: 15px 20px;
            }
            
            .nav-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }
            .nav-container {
                flex-direction: column;
                gap: 0;
                padding: 15px 20px;
            }
            
            .nav-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: rgba(26, 26, 26, 0.95);
                border-radius: 10px;
                padding: 20px 0;
                margin-top: 15px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.3);
                backdrop-filter: blur(10px);
            }
            
            .nav-menu.active {
                display: flex;
                animation: slideDown 0.3s ease-out;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-menu a {
                display: block;
                padding: 15px 25px;
                border-radius: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                transition: all 0.3s ease;
            }
            
            .nav-menu a:hover {
                background: rgba(130, 180, 64, 0.1);
                padding-left: 35px;
            }
            
            .nav-menu li:last-child a {
                border-bottom: none;
            }
            
            .search-container {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            
            .search-box {
                width: 100%;
            }
            
            .search-box:focus {
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .alternatives-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Slide Down Animation */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Menu Icons */
        .mobile-menu-toggle .menu-icon {
            display: block;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle .close-icon {
            display: none;
        }

        .mobile-menu-toggle.active .menu-icon {
            display: none;
        }

        .mobile-menu-toggle.active .close-icon {
            display: block;
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .movie-poster {
                height: 220px;
            }
        }
        
        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #d90000;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #d90000;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background: #a8d456;
            transform: scale(1.1);
        }