:root {
            --primary-color: #e91e63;
            --secondary-color: #9c27b0;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            background-color: #0a0a0a;
            color: #ddd;
            overflow-x: hidden;
        }
        .container-fluid {
            max-width: 1400px;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            color: #ccc !important;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: #fff !important;
        }
        .nav-link:hover:after, .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient);
            border-radius: 2px;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ccc;
            line-height: 1.6;
        }
        .card {
            background-color: rgba(30,30,30,0.8);
            border: 1px solid #333;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(233,30,99,0.2);
            border-color: var(--primary-color);
        }
        .card-img-top {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        .card-title {
            color: #fff;
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        .card-text {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .badge {
            font-weight: 500;
            padding: 5px 10px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        .btn-gradient {
            background: var(--gradient);
            border: none;
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-gradient:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(233,30,99,0.3);
            color: white;
        }
        .btn-outline-gradient {
            background: transparent;
            border: 2px solid transparent;
            background-clip: padding-box, border-box;
            background-origin: padding-box, border-box;
            background-image: linear-gradient(rgba(30,30,30,0.8), rgba(30,30,30,0.8)), var(--gradient);
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-outline-gradient:hover {
            background: var(--gradient);
            color: white;
            transform: scale(1.05);
        }
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 15px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }
        .footer {
            background-color: #111;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-links h5 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary-color);
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: rgba(20,20,20,0.8);
            padding: 40px 0;
            border-radius: 15px;
            margin: 40px 0;
        }
        .flink {
            display: inline-block;
            background-color: rgba(40,40,40,0.8);
            color: #ccc;
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #444;
        }
        .flink:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
            border-color: transparent;
        }
        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .works-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .works-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
            }
            .card-img-top {
                height: 220px;
            }
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
            background-color: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            padding: 5px 15px;
            background-color: rgba(60,60,60,0.7);
            border-radius: 20px;
            color: #ccc;
            font-size: 0.9rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .tag:hover {
            background: var(--gradient);
            color: white;
            transform: scale(1.05);
        }
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pagination-custom .page-link {
            background-color: rgba(40,40,40,0.8);
            border-color: #444;
            color: #ccc;
        }
        .pagination-custom .page-link:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        .pagination-custom .active .page-link {
            background: var(--gradient);
            border-color: transparent;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(233,30,99,0.3);
        }
        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(233,30,99,0.2);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 30px auto;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .nav-indicator {
            position: absolute;
            bottom: -2px;
            left: 0;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
            transition: all 0.3s;
            z-index: 1;
        }
