:root {
            --primary-color: #8b008b;
            --secondary-color: #ff69b4;
            --dark-color: #2c003e;
            --light-color: #f9f0ff;
        }
        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 0, 62, 0.85), rgba(139, 0, 139, 0.9)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .star-name {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            color: #fff;
        }
        .section-title {
            color: var(--dark-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(139, 0, 139, 0.2);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .badge-custom {
            background: var(--secondary-color);
            color: white;
            font-size: 0.75rem;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(139, 0, 139, 0.4);
        }
        .video-thumbnail {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }
        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 0, 139, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: white;
            font-size: 3rem;
        }
        .video-thumbnail:hover .play-overlay {
            opacity: 1;
        }
        .friendlink a.flink {
            background: white;
            border-radius: 10px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            margin: 5px;
        }
        .friendlink a.flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }
        footer {
            background: var(--dark-color);
            color: #ccc;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        .schema-data {
            display: none;
        }
        @media (max-width: 768px) {
            .star-name {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0;
            }
        }
