        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #00ffff;
            --secondary-color: #ff0099;
            --dark-bg: #0a0a14;
            --darker-bg: #050510;
            --card-bg: #121225;
            --text-primary: #f0f0ff;
            --text-secondary: #b0b0d0;
            --accent-cyan: #00ffea;
            --accent-pink: #ff00cc;
            --border-glow: rgba(0, 255, 255, 0.3);
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 204, 0.05) 0%, transparent 20%);
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: var(--spacing-unit);
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--secondary-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-cyan);
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-primary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color var(--transition-speed), text-shadow var(--transition-speed);
        }
        a:hover {
            color: var(--accent-pink);
            text-shadow: 0 0 8px rgba(255, 0, 204, 0.5);
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -1px;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }
        .my-logo:hover {
            text-shadow: 0 0 20px rgba(255, 0, 204, 0.7);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: all var(--transition-speed);
        }
        .main-nav a:hover {
            background-color: rgba(0, 255, 255, 0.1);
            color: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto 2rem;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background-color: rgba(18, 18, 37, 0.7);
            border-radius: var(--border-radius);
            padding: 3rem;
            border: 1px solid rgba(0, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .search-module, .comments-module, .rating-module {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border: 1px solid rgba(0, 255, 255, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .search-module h3, .comments-module h3, .rating-module h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-box {
            display: flex;
            margin-top: 1rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: rgba(10, 10, 20, 0.8);
            border: 1px solid var(--border-glow);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-box button {
            padding: 0 1.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-cyan));
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            color: var(--darker-bg);
            font-weight: bold;
            cursor: pointer;
            transition: transform var(--transition-speed);
        }
        .search-box button:hover {
            transform: scale(1.05);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            margin-top: 1rem;
            background-color: rgba(10, 10, 20, 0.8);
            border: 1px solid var(--border-glow);
            border-radius: var(--border-radius);
            color: var(--text-primary);
            font-family: inherit;
            resize: vertical;
        }
        .comment-form button {
            margin-top: 1rem;
            padding: 0.8rem 1.5rem;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }
        .comment-form button:hover {
            background-color: #ff00aa;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
        }
        .star {
            color: #444466;
            cursor: pointer;
            transition: color var(--transition-speed), transform var(--transition-speed);
        }
        .star:hover, .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .submit-rating {
            display: block;
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(45deg, #ff9900, #ffcc00);
            border: none;
            border-radius: var(--border-radius);
            color: #222;
            font-weight: bold;
            cursor: pointer;
            transition: transform var(--transition-speed);
        }
        .submit-rating:hover {
            transform: translateY(-3px);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 2px solid var(--border-glow);
            box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
        }
        .info-box {
            background: linear-gradient(135deg, rgba(0, 40, 60, 0.7), rgba(60, 0, 40, 0.7));
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .info-box h4 {
            margin-top: 0;
            color: var(--accent-cyan);
        }
        .mod-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .mod-item {
            background-color: rgba(30, 30, 50, 0.6);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 0, 204, 0.2);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        .mod-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 204, 0.2);
            border-color: var(--accent-pink);
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px dashed rgba(0, 255, 255, 0.3);
            text-align: right;
        }
        .site-footer {
            background-color: var(--darker-bg);
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-glow);
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        friend-link a {
            color: var(--text-secondary);
            transition: color var(--transition-speed);
        }
        friend-link a:hover {
            color: var(--primary-color);
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(0, 255, 255, 0.2);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: rgba(10, 10, 20, 0.98);
                flex-direction: column;
                padding: 1rem;
                border-top: 1px solid var(--border-glow);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .main-container {
                padding: 0 1rem 3rem;
            }
        }
        @keyframes glowPulse {
            0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
            50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
        }
        .glowing-border {
            animation: glowPulse 3s infinite ease-in-out;
        }
