
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');
        html, body {
            height: 100%;
            margin: 0;
            background: #181a1b;
            color: #e0e0e0;
            font-family: 'Montserrat', Arial, sans-serif;
            transition: background 0.3s;
        }
        header {
            background: #1a1a1a;
            padding: 24px 0 10px 0;
            text-align: center;
            border-bottom: 2px solid #222;
        }
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }
        .logo-img {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 0 8px #c00;
        }
        .logo-text {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #e53935;
            text-shadow: 0 2px 8px #222;
        }
        .container {
            max-width: 1020px;
            margin: 32px auto 0 auto;
            padding: 0 18px 60px 18px;
        }
        h1, h2, h3 {
            color: #e53935;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        h2, h3 {
            margin-top: 38px;
        }
        h1:after, h2:after, h3:after {
            content: " 🎬";
            color: #43a047;
        }
        .search-area {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 36px 0 22px 0;
        }
        .search-bar {
            width: 340px;
            padding: 12px 18px;
            border-radius: 8px 0 0 8px;
            border: none;
            font-size: 1.1rem;
            background: #232b2b;
            color: #fff;
            outline: none;
        }
        .search-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 0 8px 8px 0;
            background: #43a047;
            color: #fff;
            font-size: 1.1rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
        }
        .search-btn:hover {
            background: #388e3c;
        }
        .movie-list, .tv-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 20px;
            margin-top: 16px;
        }
        .movie-card, .tv-card {
            background: #232b2b;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 18px #1115;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.12s;
        }
        .movie-card:hover, .tv-card:hover {
            transform: translateY(-6px) scale(1.04);
            box-shadow: 0 8px 32px #111a;
        }
        .movie-poster, .tv-poster {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background: #444;
        }
        .movie-title, .tv-title {
            font-size: 1.07rem;
            font-weight: 600;
            color: #fff;
            margin: 14px 0 8px 0;
            text-align: center;
            min-height: 44px;
        }
        .watch-btn {
            background: #e53935;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 8px 18px;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .watch-btn:hover {
            background: #b71c1c;
        }
        .section-title {
            font-size: 1.5rem;
            margin: 40px 0 18px 0;
            color: #43a047;
            text-align: center;
            font-weight: 700;
        }
        .search-results {
            margin-top: 24px;
        }
        .footer {
            background: #181a1b;
            color: #bdbdbd;
            padding: 36px 0 22px 0;
            text-align: center;
            border-top: 2px solid #222;
            font-size: 1.1rem;
        }
        a, a:visited {
            color: #43a047;
            text-decoration: none;
        }
        a:hover {
            color: #e53935;
        }
        @media (max-width: 700px) {
            .container {
                padding: 0 4vw 60px 4vw;
            }
            .search-bar {
                width: 70vw;
            }
            .movie-poster, .tv-poster {
                height: 180px;
            }
        }
    