:root {
            --primary-color: #d81b60;
            --secondary-color: #f8bbd0;
            --dark-color: #222;
            --light-color: #f9f9f9;
            --gray-color: #eee;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            background-color: var(--light-color);
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        .nav-link {
            color: #555 !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        .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=1350&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #c2185b;
            border-color: #c2185b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            margin-bottom: 30px;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .card-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        .card-text {
            color: #666;
            font-size: 0.95rem;
        }
        .badge-genre {
            background-color: var(--secondary-color);
            color: #000;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
            display: inline-block;
        }
        .about-section {
            background-color: white;
            padding: 80px 0;
        }
        .profile-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            max-width: 100%;
            height: auto;
        }
        .info-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        .info-list li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary-color);
        }
        .works-section {
            background-color: var(--gray-color);
            padding: 80px 0;
        }
        .filter-buttons {
            margin-bottom: 40px;
        }
        .filter-btn {
            background-color: white;
            border: 2px solid #ddd;
            color: #555;
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px;
            transition: all 0.3s;
            font-weight: 500;
        }
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .pagination .page-link {
            color: var(--primary-color);
            border: none;
            margin: 0 5px;
            border-radius: 5px;
        }
        .pagination .page-item.active .page-link {
            background-color: var(--primary-color);
            color: white;
        }
        .video-section {
            padding: 80px 0;
            background-color: white;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .gallery-section {
            padding: 80px 0;
            background-color: var(--gray-color);
        }
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        .news-section {
            padding: 80px 0;
            background-color: white;
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
            margin-bottom: 20px;
        }
        .news-date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .friendlink {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0;
        }
        .friendlink .section-title {
            color: white;
        }
        .friendlink .section-title:after {
            background-color: white;
        }
        .flink {
            display: inline-block;
            color: #ccc;
            background-color: rgba(255,255,255,0.1);
            padding: 12px 25px;
            border-radius: 30px;
            margin: 10px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            color: white;
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        footer {
            background-color: #111;
            color: #aaa;
            padding: 60px 0 30px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 999;
            display: none;
            transition: all 0.3s;
        }
        .back-to-top:hover {
            background-color: #c2185b;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
