        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 50px rgba(0, 10, 30, 0.8);
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ff6b6b; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4757;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(77, 171, 247, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #b8e2f2;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(255, 107, 107, 0.2);
            color: #ff6b6b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #4dabf7;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(20, 25, 45, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #4dabf7;
        }
        .breadcrumb a { color: #b8e2f2; }
        .article-hero {
            text-align: center;
            padding: 3rem 1rem;
            background: radial-gradient(circle at center, rgba(30, 60, 114, 0.4) 0%, transparent 70%);
            margin-bottom: 3rem;
            border-bottom: 1px solid #2a3b5c;
        }
        .article-hero h1 {
            font-size: 3.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .article-hero .meta {
            color: #8899cc;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-area { grid-template-columns: 1fr; }
        }
        main article {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #2a3b5c;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 { font-size: 3.2rem; border-bottom: 3px solid #ff6b6b; padding-bottom: 0.5rem; }
        h2 { font-size: 2.4rem; color: #4dabf7; border-left: 5px solid #ff6b6b; padding-left: 15px; }
        h3 { font-size: 1.8rem; color: #b8e2f2; }
        h4 { font-size: 1.4rem; color: #a0c4ff; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        strong { color: #ffd166; }
        em { color: #a0c4ff; }
        blockquote {
            border-left: 4px solid #ff6b6b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #cbd5e1;
            font-style: italic;
            background: rgba(255, 107, 107, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.6), rgba(10, 20, 40, 0.8));
            border: 1px solid #4dabf7;
            border-radius: 10px;
            padding: 1.8rem;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            border: 2px solid #4dabf7;
            margin: 2rem auto;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #8899cc;
            padding: 0.5rem;
            background: rgba(20, 25, 45, 0.8);
        }
        .search-module, .comment-module, .rating-module {
            background: rgba(25, 30, 50, 0.8);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #3a4b6c;
        }
        .module-title {
            font-size: 1.5rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module-title i { color: #4dabf7; }
        form { display: flex; flex-direction: column; gap: 1.2rem; }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 6px;
            border: 1px solid #3a4b6c;
            background: rgba(15, 20, 35, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #ff6b6b;
            box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
        }
        button, .btn {
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #ff4757, #ff6b6b);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
        }
        .stars { display: flex; gap: 5px; margin: 1rem 0; }
        .star { font-size: 1.8rem; color: #444; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffd166; }
        aside {
            background: rgba(20, 25, 40, 0.7);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a3b5c;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .toc {
            margin-bottom: 2.5rem;
        }
        .toc h3 {
            color: #ffd166;
            border-bottom: 2px solid #4dabf7;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .toc ul {
            list-style: none;
            margin-left: 0;
        }
        .toc li { margin-bottom: 0.8rem; }
        .toc a {
            display: block;
            padding: 0.6rem 1rem;
            background: rgba(40, 50, 80, 0.5);
            border-radius: 6px;
            border-left: 3px solid transparent;
        }
        .toc a:hover {
            background: rgba(60, 80, 120, 0.6);
            border-left-color: #ff6b6b;
        }
        .related-links h3 {
            color: #ffd166;
            margin-bottom: 1.5rem;
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background: rgba(30, 40, 70, 0.5);
            border-radius: 6px;
            transition: transform 0.2s;
        }
        .related-links li:hover {
            transform: translateX(5px);
            background: rgba(40, 55, 90, 0.7);
        }
        .site-footer {
            background: rgba(10, 15, 30, 0.95);
            border-top: 2px solid #4dabf7;
            margin-top: 4rem;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        friend-link {
            background: rgba(40, 50, 80, 0.6);
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            border: 1px solid #3a4b6c;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(60, 80, 120, 0.8);
            border-color: #ff6b6b;
        }
        .copyright {
            text-align: center;
            color: #8899cc;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3b5c;
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; margin-top: 1rem; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.5rem; }
            .hamburger { display: block; align-self: flex-end; margin-top: -50px; }
            .article-hero h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            main article { padding: 1.5rem; }
            .content-area { gap: 2rem; }
            aside { position: static; }
        }
