:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #2A2A8B;
            --ghost-pink: #FF66B2;
            --ghost-cyan: #00FFFF;
            --ghost-red: #FF3333;
            --ghost-orange: #FF9933;
            --dark-bg: #111122;
            --light-text: #F0F0FF;
            --card-bg: #1E1E3A;
        }
        * {
            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;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: var(--ghost-cyan);
            transform: translateY(-2px);
        }
        .site-header {
            background: linear-gradient(135deg, var(--pacman-blue) 0%, #000033 100%);
            padding: 1rem 2rem;
            border-bottom: 4px solid var(--primary-yellow);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-shadow: 3px 3px 0 var(--ghost-red), 0 0 10px rgba(255, 204, 0, 0.7);
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--ghost-cyan);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 204, 0, 0.15);
            border-color: var(--primary-yellow);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-yellow);
        }
        .breadcrumb {
            background-color: var(--card-bg);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #333355;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--ghost-pink);
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border: 1px solid #333366;
        }
        h1 {
            color: var(--primary-yellow);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            color: var(--ghost-cyan);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--ghost-pink);
        }
        h3 {
            color: var(--ghost-orange);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-meta {
            text-align: center;
            color: #AAAAFF;
            font-style: italic;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary-yellow);
            font-weight: 600;
            padding: 1rem;
            background-color: rgba(42, 42, 139, 0.3);
            border-left: 5px solid var(--ghost-red);
            border-radius: 5px;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-yellow);
            margin: 2rem 0;
        }
        .game-ranking-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }
        .game-ranking-table th {
            background-color: var(--pacman-blue);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .game-ranking-table td {
            padding: 1rem;
            border-bottom: 1px solid #333355;
        }
        .game-ranking-table tr:hover {
            background-color: rgba(255, 204, 0, 0.05);
        }
        .rank-badge {
            display: inline-block;
            background-color: var(--ghost-red);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            font-weight: bold;
            margin-right: 10px;
        }
        .rank-1 { background-color: gold; color: black; }
        .rank-2 { background-color: silver; }
        .rank-3 { background-color: #CD7F32; }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--primary-yellow);
            margin: 1.5rem 0;
            display: block;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #AAAAFF;
            margin-top: -0.5rem;
            margin-bottom: 2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid #333366;
        }
        .sidebar-widget h3 {
            color: var(--ghost-pink);
            margin-top: 0;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid var(--pacman-blue);
            border-radius: 25px 0 0 25px;
            background-color: #0A0A1A;
            color: white;
        }
        .search-form button {
            background-color: var(--primary-yellow);
            color: black;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 25px 25px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #FFD700;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
        }
        .stars .active {
            color: gold;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #444477;
            background-color: #0A0A1A;
            color: white;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--ghost-red), var(--ghost-orange));
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .internal-links {
            background-color: #0A0A1A;
            padding: 2rem;
            margin-top: 3rem;
        }
        .links-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--ghost-cyan);
        }
        .web-link:hover {
            background-color: #252547;
        }
        .site-footer {
            background-color: #000011;
            padding: 2rem;
            text-align: center;
            border-top: 3px solid var(--primary-yellow);
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 1.5rem;
            color: #8888AA;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .hamburger {
                display: block;
            }
            .container {
                padding: 0 1rem;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .internal-links {
                padding: 1.5rem;
            }
            .links-container {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
