:root {
            --primary-color: #8b008b;
            --secondary-color: #4b0082;
            --accent-color: #ff69b4;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: var(--shadow);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
        }
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin-bottom: 2rem;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
        }
        .badge-custom {
            background-color: var(--accent-color);
            color: white;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .gallery-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s;
            cursor: pointer;
        }
        .gallery-img:hover {
            transform: scale(1.05);
        }
        .friendlink {
            background-color: var(--light-bg);
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: white;
            border-radius: 30px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--accent-color);
        }
        footer {
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
            color: white;
        }
        footer a {
            color: #ffd700;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
            }
            .navbar-collapse {
                background-color: var(--primary-color);
                padding: 1rem;
                border-radius: 10px;
            }
        }
