:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #2A2A7C;
            --ghost-pink: #FF69B4;
            --ghost-cyan: #00FFFF;
            --ghost-red: #FF3333;
            --ghost-orange: #FF9933;
            --text-dark: #222222;
            --text-light: #F5F5F5;
            --bg-light: #F8F8F8;
            --bg-dark: #111122;
            --border-radius: 12px;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--pacman-blue) 0%, #000033 100%);
            color: var(--text-light);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--primary-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 var(--ghost-red);
            transition: var(--transition);
        }
        .logo a:hover {
            color: white;
            text-shadow: 3px 3px 0 var(--ghost-cyan);
            transform: scale(1.03);
        }
        .logo i {
            font-size: 2.5rem;
            animation: spin 4s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: var(--ghost-pink);
            color: var(--text-dark);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }
        .hamburger span {
            width: 30px;
            height: 4px;
            background-color: var(--primary-yellow);
            border-radius: 4px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--pacman-blue);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.8rem;
            display: block;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--ghost-cyan);
            color: var(--text-dark);
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1.5rem auto;
            padding: 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--pacman-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--ghost-pink);
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #888;
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--pacman-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 8px solid var(--primary-yellow);
            padding-left: 1.5rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed #eee;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta i {
            color: var(--ghost-orange);
        }
        article h2 {
            font-size: 2rem;
            color: var(--ghost-pink);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary-yellow);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--pacman-blue);
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 1.5rem;
            border-left: 5px solid var(--primary-yellow);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }
        .inline-link {
            color: var(--ghost-red);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--ghost-red);
            transition: var(--transition);
        }
        .inline-link:hover {
            color: var(--pacman-blue);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--pacman-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-yellow);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--ghost-cyan);
        }
        .search-form button {
            background-color: var(--ghost-cyan);
            color: var(--text-dark);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--ghost-pink);
            color: white;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--primary-yellow);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--ghost-cyan);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--ghost-pink), var(--ghost-orange));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
        }
        .web-links {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .web-link a {
            color: var(--pacman-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--ghost-pink);
        }
        .web-link i {
            color: var(--primary-yellow);
        }
        footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--ghost-cyan);
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
            }
            article h1 {
                font-size: 2.2rem;
                padding-left: 1rem;
            }
            .content-area {
                padding: 1.8rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
