:root {
            --primary-yellow: #FFCC00;
            --primary-blue: #2A2A8F;
            --accent-pink: #FF69B4;
            --dark-bg: #111;
            --light-text: #F0F0F0;
            --gray-border: #333;
            --shadow: 0 4px 12px rgba(255, 204, 0, 0.2);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-pink);
            text-decoration: underline;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 2px solid var(--primary-yellow);
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-shadow: 3px 3px 0 var(--primary-blue);
            letter-spacing: -1px;
        }
        .my-logo span {
            color: var(--accent-pink);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .breadcrumb {
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb a {
            color: #ccc;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-top: 1rem;
        }
        nav {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        nav a:hover {
            background-color: var(--primary-blue);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-yellow);
        }
        .search-form {
            display: flex;
            margin-left: auto;
            margin-right: 1rem;
        }
        .search-form input {
            padding: 0.6rem;
            border: 1px solid var(--primary-yellow);
            border-radius: 4px 0 0 4px;
            background: #222;
            color: white;
            min-width: 200px;
        }
        .search-form button {
            padding: 0.6rem 1.2rem;
            background: var(--primary-yellow);
            color: var(--dark-bg);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .search-form button:hover {
            background: var(--accent-pink);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .article-content {
            background: #1a1a1a;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-yellow);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--accent-pink);
            padding-left: 1rem;
        }
        h2 {
            color: var(--primary-yellow);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--gray-border);
        }
        h3 {
            color: #FFCC99;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #ccc;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #FFCC99;
            font-weight: 500;
            padding: 1rem;
            background: #2a2a2a;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(255,204,0,0.1), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-yellow);
            margin: 1.8rem 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border: 3px solid var(--primary-blue);
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(255,204,0,0.3);
        }
        emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        aside {
            background: #1a1a1a;
            padding: 1.8rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--accent-pink);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            border-radius: 4px;
            border: 1px solid #444;
            background: #222;
            color: white;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .active {
            color: var(--primary-yellow);
        }
        .btn {
            padding: 0.9rem 1.8rem;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--primary-yellow);
            color: var(--dark-bg);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .link-list li:before {
            content: '▶';
            color: var(--primary-yellow);
            position: absolute;
            left: 0;
        }
        footer {
            background: #0a0a0a;
            padding: 3rem 2rem;
            border-top: 3px solid var(--primary-blue);
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            display: block;
            margin-bottom: 0.7rem;
            color: #aaa;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background: #222;
            border-radius: 6px;
            margin: 1rem 0;
            border-left: 4px solid var(--accent-pink);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-border);
            color: #777;
            font-size: 0.9rem;
        }
        .update-time {
            color: var(--accent-pink);
            font-weight: bold;
            background: #222;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: inline-block;
            margin: 1rem 0;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: #1a1a1a;
                padding: 1rem;
                border-radius: 8px;
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }
            .search-form input {
                flex-grow: 1;
                min-width: auto;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
