
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --highlight: #e94560;
            --text: #f0f0f0;
            --card-bg: rgba(26, 26, 46, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            background-attachment: fixed;
            position: relative;
            overflow-x: hidden;
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(233, 69, 96, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(15, 52, 96, 0.1) 0%, transparent 20%);
            z-index: -1;
        }
        
        header {
            background: rgba(10, 10, 20, 0.9);
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            height: 60px;
            width: 60px;
            object-fit: contain;
        }
        
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #e94560, #ff7a8a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }
        
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
        }
        
        .hero {
            text-align: center;
            padding: 3rem 0;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #ff7a8a, #ffa8b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(240, 240, 240, 0.9);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, var(--highlight), #ff7a8a);
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
        }
        
        section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: #ffa8b6;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        h2::after {
            content: "🎬";
            position: absolute;
            right: 0;
        }
        
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ff7a8a;
        }
        
        h3::after {
            content: "🍿";
            margin-left: 10px;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature-card {
            background: rgba(15, 52, 96, 0.3);
            border-radius: 12px;
            padding: 1.8rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .feature-card h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: #ffa8b6;
        }
        
        .search-section {
            background: rgba(15, 52, 96, 0.3);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        .search-container {
            display: flex;
            gap: 1rem;
        }
        
        #search-input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        
        #search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        #search-button {
            background: var(--highlight);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        #search-button:hover {
            background: #ff5c77;
        }
        
        #search-results {
            margin-top: 1.5rem;
        }
        
        .items-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .item-card {
            background: rgba(15, 52, 96, 0.4);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .item-card:hover {
            transform: translateY(-5px);
        }
        
        .item-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .item-content {
            padding: 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .item-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            flex-grow: 1;
        }
        
        .item-year {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }
        
        .play-button {
            display: block;
            background: var(--highlight);
            color: white;
            text-align: center;
            padding: 0.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            margin-top: auto;
            transition: background 0.3s ease;
        }
        
        .play-button:hover {
            background: #ff5c77;
        }
        
        footer {
            background: rgba(10, 10, 20, 0.9);
            padding: 3rem 1rem;
            text-align: center;
            margin-top: 4rem;
            backdrop-filter: blur(10px);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #ffa8b6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ff7a8a;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .items-container {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
            
            .feature-card {
                padding: 1.3rem;
            }
        }
    