:root {
            --primary-color: #e83e8c;
            --secondary-color: #6f42c1;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            background-color: #fefefe;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        .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=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 3rem;
        }
        .star-name {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
        }
        .star-tagline {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
        }
        .section-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 2rem;
            font-weight: 600;
            color: var(--dark-color);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(232, 62, 140, 0.15);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .card-title a {
            color: var(--dark-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        .card-title a:hover {
            color: var(--primary-color);
        }
        .badge-custom {
            background-color: var(--primary-color);
            color: white;
            font-weight: normal;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background-color: var(--light-color);
            border-radius: 50px;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            margin-right: 15px;
        }
        .footer-links a:hover {
            color: white;
        }
        .icon-list li {
            margin-bottom: 10px;
        }
        .icon-list i {
            color: var(--primary-color);
            width: 24px;
            margin-right: 10px;
        }
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        .table-hover tbody tr:hover {
            background-color: rgba(232, 62, 140, 0.05);
        }
        .pagination .page-link {
            color: var(--primary-color);
        }
        .pagination .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary-color);
        }
        .list-group-item.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .progress-bar {
            background-color: var(--primary-color);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(232, 62, 140, 0.1);
            color: var(--dark-color);
        }
        .accordion-button:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.25);
        }
        .breadcrumb-item.active {
            color: var(--primary-color);
        }
        .alert-custom {
            background-color: rgba(232, 62, 140, 0.1);
            border-color: rgba(232, 62, 140, 0.3);
            color: #333;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .star-name {
                font-size: 2.5rem;
            }
            .star-tagline {
                font-size: 1.2rem;
            }
        }
