:root {
            --primary-color: #e74c8c;
            --secondary-color: #6c5ce7;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            background-color: #0f0f1a;
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(231, 76, 140, 0.3);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            color: var(--primary-color) !important;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .nav-link {
            color: #ddd !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        .nav-link:hover::after, .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1.2rem;
            right: 1.2rem;
            height: 2px;
            background-color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.9)), url('https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(231, 76, 140, 0.1) 0%, transparent 50%);
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(231, 76, 140, 0.3);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 140, 0.4);
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }
        .card {
            background-color: rgba(30, 30, 50, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(231, 76, 140, 0.3);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .card-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.8rem;
        }
        .card-text {
            color: #ccc;
            font-size: 0.95rem;
        }
        .badge {
            padding: 0.4rem 0.8rem;
            font-weight: 500;
            border-radius: 5px;
        }
        .badge-new {
            background-color: #ff4757;
        }
        .badge-free {
            background-color: #2ed573;
        }
        .badge-premium {
            background-color: #ffa502;
        }
        .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: none;
        }
        .about-section {
            background-color: rgba(20, 20, 35, 0.9);
            padding: 6rem 0;
        }
        .profile-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }
        .profile-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: rgba(40, 40, 60, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        .stats-box:hover {
            background-color: rgba(50, 50, 70, 0.9);
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .stats-label {
            color: #aaa;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .friendlink {
            background-color: rgba(15, 15, 26, 0.9);
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background-color: rgba(40, 40, 60, 0.7);
            color: #ddd;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin: 0.5rem;
            transition: var(--transition);
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #0a0a14;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .copyright {
            color: #666;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }
        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .feature-item {
            padding: 2rem;
            border-radius: 15px;
            background-color: rgba(30, 30, 50, 0.5);
            transition: var(--transition);
            height: 100%;
        }
        .feature-item:hover {
            background-color: rgba(40, 40, 60, 0.8);
            transform: translateY(-5px);
        }
        .pagination-custom .page-link {
            background-color: rgba(40, 40, 60, 0.7);
            border-color: rgba(255, 255, 255, 0.1);
            color: #ddd;
        }
        .pagination-custom .page-link:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        .pagination-custom .active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .navbar-nav {
                background-color: rgba(10, 10, 20, 0.98);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }
