:root {
            --primary-color: #8b008b;
            --secondary-color: #4b0082;
            --accent-color: #ff69b4;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #666;
        }
        body {
            font-family: "Microsoft YaHei", "SimHei", sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin: 40px 0 30px;
            font-weight: bold;
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .badge-custom {
            background-color: var(--accent-color);
            color: white;
            font-size: 0.8rem;
            padding: 5px 10px;
        }
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            transition: background-color 0.3s ease;
        }
        .btn-custom:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        .footer {
            background-color: #222;
            color: #ccc;
            padding: 50px 0 20px;
        }
        .flink {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            color: #ddd;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }
        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        .info-box {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 25px;
            height: 100%;
        }
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(139, 0, 139, 0.8);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .video-thumb:hover .play-btn {
            opacity: 1;
        }
        .video-thumb {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        .pagination-custom .page-link {
            color: var(--primary-color);
            border: 1px solid #ddd;
        }
        .pagination-custom .page-link:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .pagination-custom .active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .work-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .content-block {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            text-align: justify;
        }
        .content-block h3 {
            color: var(--secondary-color);
            margin-top: 25px;
            margin-bottom: 15px;
        }
        .content-block p {
            margin-bottom: 15px;
            color: var(--light-text);
        }
        .stats-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            margin: 15px 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }
        .stats-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
