* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a12;
            --primary-accent: #2a9d8f;
            --secondary-accent: #e76f51;
            --text-primary: #e9ecef;
            --text-secondary: #adb5bd;
            --surface-dark: #161625;
            --surface-light: #2d2d44;
            --border-color: #3a3a5d;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-accent);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo a {
            background: none;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            padding: 8px 5px;
            font-weight: 600;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .search-container {
            padding: 30px 0 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            background: var(--surface-dark);
            border: 2px solid var(--border-color);
            border-right: none;
            color: var(--text-primary);
            font-size: 1rem;
            border-radius: 8px 0 0 8px;
        }
        .search-btn {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: var(--secondary-accent);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        article {
            background: var(--surface-dark);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-header {
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px solid var(--primary-accent);
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--text-primary), var(--primary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 15px;
        }
        .update-time {
            color: var(--secondary-accent);
            font-weight: 600;
        }
        h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            color: var(--primary-accent);
        }
        h3 {
            font-size: 1.6rem;
            margin: 40px 0 15px;
            color: var(--text-primary);
        }
        h4 {
            font-size: 1.3rem;
            margin: 30px 0 12px;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(42, 157, 143, 0.15);
            border-left: 4px solid var(--primary-accent);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }
        .game-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .game-image:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            padding: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: var(--surface-dark);
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            color: var(--primary-accent);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border-color);
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .link-list i {
            color: var(--secondary-accent);
        }
        .interactive-section {
            background: var(--surface-light);
            border-radius: 12px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--border-color);
            cursor: pointer;
        }
        .stars .active {
            color: gold;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: var(--text-secondary);
        }
        input, textarea, select {
            padding: 15px;
            background: var(--surface-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: var(--secondary-accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
        }
        footer {
            background: var(--surface-dark);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            background: var(--surface-light);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            border-color: var(--primary-accent);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 500px;
                padding-top: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            article {
                padding: 25px;
            }
            .interactive-section {
                padding: 25px;
            }
            .meta {
                flex-direction: column;
            }
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
            vertical-align: middle;
        }
        .key-term {
            background: rgba(231, 111, 81, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
            color: var(--secondary-accent);
        }
        .spoiler {
            background: #333;
            color: transparent;
            cursor: pointer;
            padding: 2px 5px;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .spoiler:hover {
            background: #444;
            color: inherit;
        }
