:root {
            --primary-color: #e91e63;
            --secondary-color: #9c27b0;
            --dark-color: #121212;
            --light-color: #f8f9fa;
            --gray-color: #2d2d2d;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            background-color: #0a0a0a;
            color: #e0e0e0;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: #fff;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        .card {
            background-color: var(--gray-color);
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .badge-new {
            background: linear-gradient(45deg, var(--primary-color), #ff4081);
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 2;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .film-list li {
            padding: 12px 0;
            border-bottom: 1px solid #444;
            transition: background-color 0.3s ease;
        }
        .film-list li:hover {
            background-color: rgba(255, 255, 255, 0.05);
            padding-left: 10px;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: #333;
            color: #ccc;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #050505;
            border-top: 1px solid #333;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #333;
            color: #fff;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scale(1.1);
        }
        .nav-link {
            font-weight: 500;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .sticky-top {
            backdrop-filter: blur(10px);
            background-color: rgba(10, 10, 10, 0.95);
        }
        .pagination .page-link {
            background-color: #333;
            border-color: #444;
            color: #ccc;
        }
        .pagination .page-item.active .page-link {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-color: var(--primary-color);
        }
        .accordion-button {
            background-color: #222;
            color: #fff;
            font-weight: 600;
        }
        .accordion-button:not(.collapsed) {
            background-color: #333;
            color: var(--primary-color);
        }
        .accordion-body {
            background-color: #1a1a1a;
        }
        .bg-section-dark {
            background-color: #111;
        }
        .text-gradient {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .form-control {
            background-color: #222;
            border: 1px solid #444;
            color: #fff;
        }
        .form-control:focus {
            background-color: #222;
            border-color: var(--primary-color);
            color: #fff;
            box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
        }
