:root {
            --primary: #9d4edd;
            --secondary: #560bad;
            --accent: #f72585;
            --dark: #10002b;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #4cc9f0;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            --radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .top-bar {
            background-color: var(--dark);
            color: var(--light);
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            text-align: center;
            border-bottom: 2px solid var(--primary);
        }
        .top-bar a {
            color: var(--success);
            text-decoration: none;
            font-weight: bold;
        }
        header {
            background: rgba(16, 0, 43, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--accent);
        }
        .header-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
            background: none;
            -webkit-text-fill-color: var(--primary);
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: var(--transition);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: var(--radius);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            background: rgba(247, 37, 133, 0.1);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            width: 30px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
        .breadcrumb {
            max-width: var(--max-width);
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--success);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .search-container {
            max-width: var(--max-width);
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-box {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-box input {
            flex-grow: 1;
            padding: 1.2rem 1.5rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.1rem;
            outline: none;
            border: 2px solid transparent;
        }
        .search-box input:focus {
            border-color: var(--primary);
        }
        .search-box button {
            padding: 0 2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: translateY(-2px);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        main {
            background: rgba(30, 30, 46, 0.8);
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(157, 78, 221, 0.2);
        }
        article h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: white;
            line-height: 1.2;
            background: linear-gradient(90deg, #f72585, #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed var(--gray);
            flex-wrap: wrap;
            gap: 1rem;
        }
        .author, .update-time {
            color: var(--gray);
            font-size: 0.95rem;
        }
        .author i, .update-time i {
            margin-right: 8px;
            color: var(--success);
        }
        h2, h3, h4 {
            color: white;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.3rem;
            color: var(--primary);
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
        }
        h4 {
            font-size: 1.5rem;
            color: var(--success);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #b8b8d1;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            padding: 1.5rem;
            background: rgba(86, 11, 173, 0.15);
            border-left: 5px solid var(--primary);
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .highlight {
            background: rgba(76, 201, 240, 0.15);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 5px solid var(--success);
            margin: 2rem 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 1.8rem;
            text-align: center;
            border: 1px solid rgba(157, 78, 221, 0.3);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 10px 25px rgba(247, 37, 133, 0.2);
        }
        .stat-card h3 {
            font-size: 2.5rem;
            color: var(--success);
            margin-bottom: 0.5rem;
        }
        .stat-card p {
            color: var(--gray);
            font-size: 1rem;
            margin-bottom: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2.5rem auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 3px solid var(--primary);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }
        a {
            color: var(--success);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted transparent;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .quote {
            font-size: 1.3rem;
            color: #d0bfff;
            font-style: italic;
            padding: 2rem 3rem;
            margin: 3rem 0;
            background: rgba(86, 11, 173, 0.25);
            border-radius: var(--radius);
            border-left: 8px solid var(--accent);
            position: relative;
        }
        .quote::before {
            content: "\201C";
            font-size: 5rem;
            color: var(--primary);
            position: absolute;
            left: 1rem;
            top: -1rem;
            opacity: 0.7;
        }
        .quote-author {
            text-align: right;
            font-weight: bold;
            color: var(--success);
            margin-top: 1rem;
        }
        .mod-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .mod-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid rgba(76, 201, 240, 0.3);
            transition: var(--transition);
        }
        .mod-card:hover {
            transform: scale(1.03);
            border-color: var(--success);
        }
        .mod-card h4 {
            color: var(--success);
            margin-top: 0;
        }
        .rating {
            color: #ffd700;
            margin: 0.8rem 0;
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: rgba(30, 30, 46, 0.8);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(157, 78, 221, 0.2);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--primary);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--secondary);
            margin-bottom: 1.5rem;
        }
        .toc ul {
            list-style: none;
            margin-left: 0;
        }
        .toc li {
            margin-bottom: 0.7rem;
            padding-left: 0;
        }
        .toc a {
            color: #b8b8d1;
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .toc a:hover {
            background: rgba(157, 78, 221, 0.2);
            color: white;
            padding-left: 1.5rem;
        }
        .popular-links a {
            display: block;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            color: #b8b8d1;
            transition: var(--transition);
        }
        .popular-links a:hover {
            background: rgba(247, 37, 133, 0.2);
            color: white;
            transform: translateX(5px);
        }
        .user-interaction {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 3px solid var(--secondary);
        }
        .interaction-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .rating-widget, .comment-widget {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: #ffd700;
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--success);
        }
        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border-radius: var(--radius);
            border: 2px solid rgba(157, 78, 221, 0.5);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.3);
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 1.2rem 2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(157, 78, 221, 0.4);
        }
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 5px solid var(--accent);
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-about p {
            color: #b8b8d1;
            margin-bottom: 1.5rem;
        }
        .footer-links h4, .friend-links h4 {
            color: var(--success);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul, friend-link {
            list-style: none;
        }
        .footer-links li, friend-link a {
            margin-bottom: 0.8rem;
        }
        .footer-links a, friend-link a {
            color: #b8b8d1;
            transition: var(--transition);
            display: block;
            padding: 0.3rem 0;
        }
        .footer-links a:hover, friend-link a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            .nav-links {
                position: fixed;
                top: 100px;
                left: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 100%;
                padding: 2rem;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
                border-top: 2px solid var(--accent);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .hamburger {
                display: flex;
            }
            main, .sidebar-widget {
                padding: 2rem;
            }
            article h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid, .mod-list {
                grid-template-columns: 1fr;
            }
            .search-box button {
                padding: 0 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
