:root {
            --primary-color: #9c27b0;
            --secondary-color: #673ab7;
            --accent-color: #ff4081;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(103, 58, 183, 0.8)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #e91e63;
            border-color: #e91e63;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
        }
        .section-title {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px 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 {
            color: var(--primary-color);
            font-weight: 600;
        }
        .badge-custom {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .friendlink {
            background-color: var(--light-color);
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 25px;
            margin: 5px 10px;
            border-radius: 50px;
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-color);
            color: var(--text-light);
            padding: 60px 0 20px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 8px;
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .gallery-item:hover {
            transform: scale(1.03);
        }
        .pagination-custom .page-link {
            color: var(--primary-color);
            border: 1px solid #dee2e6;
        }
        .pagination-custom .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        .search-box {
            max-width: 500px;
            margin: 0 auto 40px;
        }
        .form-control-custom {
            border-radius: 50px 0 0 50px;
            border: 2px solid var(--primary-color);
            padding: 12px 20px;
        }
        .btn-search {
            border-radius: 0 50px 50px 0;
            background-color: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
            padding: 12px 30px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
