:root {
            --primary-color: #9c27b0;
            --secondary-color: #673ab7;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
            --accent-color: #ff4081;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            background-color: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.6;
        }
        .navbar {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(156, 39, 176, 0.3);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            color: var(--light-color) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            color: #ccc !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(15, 15, 26, 0.85), rgba(26, 26, 46, 0.9)), 
                        url('https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #9c27b0, #ff4081);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: #aaa;
            margin-bottom: 30px;
        }
        .card {
            background: rgba(30, 30, 46, 0.8);
            border: 1px solid rgba(156, 39, 176, 0.2);
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
            margin-bottom: 25px;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
            border-color: rgba(156, 39, 176, 0.5);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .card-title {
            color: #fff;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .card-text {
            color: #aaa;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
        }
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .badge-genre {
            background-color: rgba(156, 39, 176, 0.2);
            color: #dda0dd;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-block;
        }
        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        footer {
            background-color: #0a0a14;
            border-top: 1px solid rgba(156, 39, 176, 0.2);
            padding: 60px 0 30px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary-color);
        }
        .copyright {
            color: #666;
            font-size: 0.9rem;
            padding-top: 30px;
            border-top: 1px solid #222;
        }
        .friendlink {
            background-color: rgba(20, 20, 35, 0.8);
            padding: 50px 0;
            border-radius: 15px;
            margin: 40px 0;
        }
        .flink {
            display: inline-block;
            background: rgba(40, 40, 60, 0.7);
            color: #ccc;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(156, 39, 176, 0.2);
            color: #fff;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
            .works-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .section-divider {
            height: 3px;
            background: linear-gradient(to right, transparent, var(--primary-color), transparent);
            margin: 60px auto;
            width: 80%;
            max-width: 800px;
        }
