:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #0000AA;
            --ghost-pink: #FF66B2;
            --ghost-cyan: #00FFFF;
            --ghost-red: #FF3333;
            --ghost-orange: #FF9900;
            --dark-bg: #111122;
            --light-text: #F0F0FF;
            --gray-border: #333355;
            --shadow: 0 6px 12px rgba(0, 0, 30, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            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.8;
            color: var(--light-text);
            background: linear-gradient(var(--dark-bg) 0%, #1a1a2e 100%);
            min-height: 100vh;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-cyan);
            text-shadow: 0 0 8px currentColor;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #000033 0%, var(--pacman-blue) 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid var(--primary-yellow);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.4rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary-yellow), #FF9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            text-shadow: 3px 3px 0 #000;
        }
        .my-logo span {
            color: var(--ghost-cyan);
            -webkit-text-fill-color: var(--ghost-cyan);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            font-size: 1.1rem;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: rgba(0, 0, 50, 0.6);
            padding: 0.8rem;
            border-radius: 0 0 8px 8px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--ghost-cyan);
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 0.5rem;
        }
        .search-section {
            background: rgba(255, 204, 0, 0.1);
            border: 2px dashed var(--primary-yellow);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--primary-yellow);
            border-radius: 50px 0 0 50px;
            background: rgba(0, 0, 20, 0.8);
            color: white;
            font-size: 1.1rem;
        }
        .search-btn {
            background: linear-gradient(var(--primary-yellow), #FF9900);
            color: black;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(#FF9900, var(--primary-yellow));
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 16px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-border);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 3px 3px 0 #000;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--ghost-cyan);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-border);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--ghost-pink);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--ghost-orange);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #CCCCFF;
            font-weight: 300;
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: rgba(0, 20, 60, 0.3);
            border-left: 5px solid var(--primary-yellow);
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            border: 5px solid var(--primary-yellow);
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .link-list {
            background: rgba(0, 40, 80, 0.4);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .link-list h4 {
            color: var(--ghost-cyan);
            margin-top: 0;
        }
        .link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .link-list li {
            background: rgba(255, 255, 255, 0.05);
            padding: 0.8rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background: rgba(255, 204, 0, 0.2);
            transform: translateX(5px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(30, 30, 60, 0.7);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid var(--gray-border);
        }
        .rating-widget h3, .comments-widget h3 {
            color: var(--primary-yellow);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #555;
        }
        .stars .active {
            color: gold;
            text-shadow: 0 0 10px gold;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form button, .comment-form button {
            background: linear-gradient(var(--ghost-pink), #FF3385);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(#FF3385, var(--ghost-pink));
            transform: translateY(-3px);
        }
        textarea, select, input {
            padding: 0.9rem;
            background: rgba(0, 0, 30, 0.8);
            border: 1px solid var(--gray-border);
            border-radius: 8px;
            color: white;
            font-family: inherit;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .update-time {
            text-align: center;
            color: #aaa;
            font-style: italic;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-border);
        }
        .site-footer {
            background: #000022;
            border-top: 3px solid var(--primary-yellow);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        friend-link {
            display: block;
            background: rgba(0, 100, 200, 0.2);
            padding: 1.2rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid var(--ghost-cyan);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-border);
            color: #888;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: var(--pacman-blue);
                width: 100%;
                padding: 2rem;
                transition: left 0.5s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.9rem;
            }
        }
