:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #1A1A8F;
            --ghost-pink: #FF66B2;
            --ghost-red: #FF3333;
            --ghost-cyan: #00CCFF;
            --ghost-orange: #FF9933;
            --dark-bg: #0A0A1A;
            --light-text: #F0F0F0;
            --gray-border: #333366;
            --accent-purple: #9933FF;
        }
        * {
            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, transform 0.2s;
        }
        a:hover {
            color: #fff;
            transform: translateY(-2px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--pacman-blue) 0%, var(--dark-bg) 100%);
            border-bottom: 4px solid var(--primary-yellow);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            text-shadow: 3px 3px 0 var(--ghost-red), 0 0 15px rgba(255, 204, 0, 0.7);
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--primary-yellow), #FF9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            border: 2px solid transparent;
        }
        .main-nav a:hover {
            border-color: var(--primary-yellow);
            background-color: rgba(255, 204, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-yellow);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--gray-border);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--ghost-cyan);
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        .search-section {
            background: rgba(26, 26, 143, 0.2);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
            border: 2px dashed var(--primary-yellow);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-button {
            background: linear-gradient(to right, var(--primary-yellow), var(--ghost-orange));
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            color: var(--dark-bg);
            transition: all 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(to right, #FFD700, #FFAA00);
        }
        .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(10, 10, 26, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            border-left: 6px solid var(--primary-yellow);
        }
        .article-content h1 {
            color: var(--primary-yellow);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        .article-content h2 {
            color: var(--ghost-cyan);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-border);
        }
        .article-content h3 {
            color: var(--ghost-pink);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            border-left: 4px solid var(--primary-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            border: 3px solid var(--primary-yellow);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 2px dotted var(--primary-yellow);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .sidebar {
            background: rgba(26, 26, 143, 0.3);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            border-top: 6px solid var(--ghost-red);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            color: var(--ghost-orange);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--primary-yellow);
        }
        .comment-form textarea,
        .rating-widget input,
        .rating-widget select {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid var(--gray-border);
            background-color: rgba(0,0,0,0.4);
            color: white;
            margin-bottom: 1rem;
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--ghost-pink), var(--accent-purple));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 2px solid var(--gray-border);
            border-bottom: 2px solid var(--gray-border);
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--ghost-cyan);
            background: rgba(0, 204, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--light-text);
            display: block;
            font-size: 1rem;
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .copyright {
            margin-top: 1rem;
            border-top: 1px solid var(--gray-border);
            padding-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .logo a {
                font-size: 2rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes pulse {
            0% { opacity: 0.8; }
            50% { opacity: 1; }
            100% { opacity: 0.8; }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
