
        @import url('inline-font1_1');
        
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --highlight: #e94560;
            --light: #f1f1f1;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            background: var(--gradient);
            background-attachment: fixed;
            color: var(--light);
            line-height: 1.7;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .container {
            background: rgba(22, 22, 40, 0.95);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        header {
            text-align: center;
            padding: 40px 20px;
            background: rgba(26, 26, 46, 0.8);
            position: relative;
            border-bottom: 3px solid var(--highlight);
        }
        
        .logo-container {
            margin-bottom: 20px;
        }
        
        .logo {
            height: 120px;
            width: 120px;
            border-radius: 50%;
            border: 3px solid var(--highlight);
            box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
            background: #fff;
            object-fit: cover;
        }
        
        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ff8a00, #da1b60);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .tagline {
            color: #ffd166;
            font-size: 1.2rem;
            margin-top: 10px;
        }
        
        h2 {
            font-family: 'Russo One', sans-serif;
            font-size: 2.3rem;
            margin: 45px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--highlight);
            color: var(--light);
        }
        
        h3 {
            color: #ffd166;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            font-family: 'Russo One', sans-serif;
        }
        
        p, ul, ol {
            font-size: 1.12rem;
            margin-bottom: 1.3em;
            color: #f1f1f1;
        }
        
        ul, ol { 
            padding-left: 1.8em;
            margin-bottom: 1.5em;
        }
        
        li {
            margin-bottom: 0.7em;
        }
        
        a {
            color: #4dccbd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        
        .content {
            padding: 35px;
        }
        
        .highlight {
            background: rgba(79, 84, 103, 0.3);
            border-left: 4px solid var(--highlight);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 12px 12px 0;
            font-size: 1.1rem;
        }
        
        .search-container {
            background: rgba(31, 40, 51, 0.7);
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        #searchInput {
            width: 70%;
            padding: 14px 22px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.12);
            color: white;
            outline: none;
        }
        
        #searchButton {
            padding: 14px 30px;
            border: none;
            border-radius: 0 30px 30px 0;
            background: var(--highlight);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        #searchButton:hover {
            background: #c1121f;
        }
        
        #searchResults {
            margin-top: 25px;
            text-align: left;
            display: none;
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        
        .media-card {
            background: rgba(31, 40, 51, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .media-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(233, 69, 96, 0.3);
        }
        
        .media-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-bottom: 2px solid var(--highlight);
        }
        
        .media-info {
            padding: 18px;
        }
        
        .media-info h3 {
            font-size: 1.15rem;
            margin: 0 0 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #ffd166;
        }
        
        .play-button {
            display: block;
            text-align: center;
            background: var(--highlight);
            color: white;
            padding: 10px;
            border-radius: 6px;
            font-weight: bold;
            margin-top: 12px;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background: #c1121f;
            text-decoration: none;
        }
        
        .ad-container {
            text-align: center;
            margin: 35px 0;
            padding: 15px;
            background: rgba(31, 40, 51, 0.6);
            border-radius: 10px;
        }
        
        footer {
            background: rgba(15, 23, 42, 0.9);
            padding: 35px;
            text-align: center;
            font-size: 1.1rem;
            margin-top: 45px;
            border-top: 3px solid var(--highlight);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .social-icon {
            font-size: 1.8rem;
            color: #ffd166;
            transition: color 0.3s ease;
        }
        
        .social-icon:hover {
            color: var(--highlight);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(31, 40, 51, 0.7);
            border-radius: 10px;
            overflow: hidden;
        }
        
        th, td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #3a3e5c;
        }
        
        th {
            background-color: var(--highlight);
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        tr:nth-child(even) {
            background-color: rgba(45, 54, 65, 0.5);
        }
        
        tr:hover {
            background-color: rgba(79, 84, 103, 0.4);
        }
        
        /* Unicode symbols for headings */
        h2::after {
            content: " ✨";
        }
        h3::after {
            content: " 🎬";
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.9rem;
            }
            
            #searchInput {
                width: 60%;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 480px) {
            .grid-container {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            
            h1 {
                font-size: 1.9rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            #searchInput {
                width: 100%;
                border-radius: 30px;
                margin-bottom: 12px;
            }
            
            #searchButton {
                width: 100%;
                border-radius: 30px;
            }
        }
    