:root {
            --primary-color: #a855f7;
            --secondary-color: #f472b6;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            background-color: #0f0f1a;
            color: #e5e7eb;
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #0f0f1a 0%, #1e1b4b 100%);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            min-height: 90vh;
            background: linear-gradient(rgba(15, 15, 26, 0.85), rgba(30, 27, 75, 0.9)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
        }
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(168, 85, 247, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .video-thumb:hover .video-play-btn {
            opacity: 1;
        }
        .flink {
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
        }
        .flink:hover {
            background: rgba(168, 85, 247, 0.3);
            color: white;
            transform: translateY(-3px);
        }
        .category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 2;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .bg-uncesored {
            background-color: #ef4444;
        }
        .bg-cesored {
            background-color: #3b82f6;
        }
        .text-gradient {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        footer {
            background: rgba(10, 10, 20, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            transition: all 0.3s ease;
            margin: 0 5px;
        }
        .social-icon:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                background-attachment: scroll;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
