* {
            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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #764ba2;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid #764ba2;
            border-radius: 25px;
            outline: none;
            transition: all 0.3s ease;
        }
        .search-input:focus {
            border-color: #667eea;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
        }
        .search-btn {
            background: #764ba2;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #667eea;
        }
        nav {
            background: #764ba2;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-menu li {
            position: relative;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            display: block;
            transition: background 0.3s ease;
        }
        .nav-menu a:hover {
            background: #667eea;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #764ba2;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #764ba2;
        }
        .breadcrumb a {
            color: #764ba2;
            text-decoration: none;
        }
        main {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            margin: 2rem auto;
        }
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .content-section {
            padding: 3rem 2rem;
        }
        .content-section h2 {
            color: #764ba2;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-left: 5px solid #667eea;
            padding-left: 15px;
        }
        .content-section h3 {
            color: #667eea;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.5rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #764ba2;
        }
        .trailer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .trailer-card {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .trailer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .trailer-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .trailer-info {
            padding: 1.5rem;
        }
        .download-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            text-align: center;
            text-decoration: none;
            font-weight: bold;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        .rating-system {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .comment-system {
            margin: 3rem 0;
        }
        .comment-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #764ba2;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            border-color: #764ba2;
            outline: none;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        .web-links {
            background: #2c3e50;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.15);
        }
        .web-link a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: #3498db;
        }
        footer {
            background: #34495e;
            color: #ecf0f1;
            text-align: center;
            padding: 2rem;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1rem 0;
        }
        .social-links a {
            color: #ecf0f1;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #3498db;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-menu {
                flex-direction: column;
                display: none;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 2rem 1rem;
            }
            .trailer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 2rem 1rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-section h2 {
                font-size: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 1rem;
        }
        .mt-3 {
            margin-top: 1rem;
        }
        .bold {
            font-weight: bold;
            color: #764ba2;
        }
