
        @import url('inline-font1_1');
        body {
            font-family: 'Comic Neue', 'Comic Sans MS', sans-serif;
            background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
            color: #333;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .logo {
            font-family: 'Comic Neue', sans-serif;
            font-size: 4rem;
            text-align: center;
            margin: 30px 0;
            background: linear-gradient(90deg, #ff00cc, #3333ff, #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 3px 3px 0 #fff, 5px 5px 0 rgba(0,0,0,0.1);
            letter-spacing: 5px;
        }
        h1, h2, h3 {
            color: #e91e63;
            margin-top: 30px;
            border-bottom: 3px dashed #ff9800;
            padding-bottom: 10px;
            display: inline-block;
        }
        h1::after, h2::after, h3::after { content: "🎬"; }
        .movie-grid, .tv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .movie-card, .tv-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .movie-card:hover, .tv-card:hover {
            transform: translateY(-5px);
        }
        .movie-card img, .tv-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .movie-card h3, .tv-card h3 {
            margin: 10px;
            font-size: 1.2rem;
            color: #333;
            border: none;
            padding: 0;
        }
        .watch-btn {
            display: block;
            background: #e91e63;
            color: #fff;
            text-align: center;
            padding: 10px;
            margin: 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }
        .watch-btn:hover {
            background: #c2185b;
        }
        .search-area {
            margin: 30px 0;
            text-align: center;
        }
        #search-input {
            padding: 12px 20px;
            width: 60%;
            border: 2px solid #ff9800;
            border-radius: 25px;
            font-size: 1.1rem;
            outline: none;
        }
        #search-btn {
            padding: 12px 25px;
            background: #ff9800;
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            cursor: pointer;
            margin-left: 10px;
            transition: background 0.3s;
        }
        #search-btn:hover {
            background: #f57c00;
        }
        #search-results {
            margin: 20px 0;
        }
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            border-radius: 0 0 15px 15px;
        }
        .ad-area {
            margin: 30px 0;
            text-align: center;
        }
    