:root {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --accent-color: #a8dadc;
            --light-color: #f1faee;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(29, 53, 87, 0.85), rgba(29, 53, 87, 0.9)), 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 80px;
            margin-bottom: 40px;
        }
        .star-name {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            color: var(--light-color);
        }
        .section-title {
            color: var(--secondary-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 40px 0 25px;
            font-weight: 700;
        }
        .work-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .work-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .work-img {
            height: 280px;
            object-fit: cover;
            width: 100%;
        }
        .work-code {
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .play-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .play-btn:hover {
            background-color: #c1121f;
            transform: scale(1.05);
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .badge-custom {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            font-weight: 600;
        }
        .flink {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            display: block;
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #e9ecef;
            height: 100%;
        }
        .flink:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-5px);
        }
        .friendlink a[rel="nofollow"] {
            opacity: 0.8;
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 10px;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info i {
            color: var(--primary-color);
            width: 20px;
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .star-name {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0 50px;
            }
            .work-img {
                height: 200px;
            }
        }
