:root {
            --primary-color: #9c27b0;
            --secondary-color: #673ab7;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            background-color: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
        }
        .navbar {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(156, 39, 176, 0.3);
            padding: 15px 0;
            transition: all 0.3s;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: #ccc !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            background: var(--gradient);
            color: white !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.15;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #e0b3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        .card {
            background: rgba(40, 40, 60, 0.7);
            border: 1px solid rgba(156, 39, 176, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
            border-color: rgba(156, 39, 176, 0.5);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .card-title {
            color: #fff;
            font-weight: 600;
            font-size: 1.2rem;
        }
        .badge {
            padding: 5px 12px;
            font-weight: 500;
            border-radius: 20px;
        }
        .badge-new {
            background: linear-gradient(45deg, #ff4081, #f50057);
        }
        .badge-free {
            background: linear-gradient(45deg, #00c853, #64dd17);
        }
        .badge-uncesored {
            background: linear-gradient(45deg, #ff9100, #ff5722);
        }
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(156, 39, 176, 0.4);
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .table {
            color: #e0e0e0;
            background: rgba(40, 40, 60, 0.7);
            border-radius: 10px;
            overflow: hidden;
        }
        .table th {
            background: rgba(156, 39, 176, 0.2);
            border-color: rgba(156, 39, 176, 0.3);
            font-weight: 600;
        }
        .table td {
            border-color: rgba(255, 255, 255, 0.1);
            vertical-align: middle;
        }
        .friendlink {
            background: rgba(30, 30, 50, 0.8);
            padding: 60px 0;
            border-top: 1px solid rgba(156, 39, 176, 0.3);
            border-bottom: 1px solid rgba(156, 39, 176, 0.3);
        }
        .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 25px;
            background: rgba(50, 50, 80, 0.8);
            color: #ccc;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(156, 39, 176, 0.2);
        }
        .flink:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        footer {
            background: #0a0a15;
            padding: 60px 0 30px;
            color: #aaa;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #9c27b0;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        .star-info {
            background: rgba(40, 40, 60, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }
        .star-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(156, 39, 176, 0.1);
            border-radius: 10px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .pagination .page-link {
            background: rgba(40, 40, 60, 0.7);
            border-color: rgba(156, 39, 176, 0.3);
            color: #ccc;
        }
        .pagination .page-link:hover {
            background: var(--gradient);
            color: white;
            border-color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .navbar-nav {
                background: rgba(26, 26, 46, 0.95);
                padding: 15px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
        .schema-data {
            display: none;
        }
