        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-yellow: #FFCC00;
            --primary-blue: #0099FF;
            --pacman-yellow: #FFEE00;
            --ghost-red: #FF5555;
            --ghost-pink: #FF88FF;
            --ghost-cyan: #55FFFF;
            --ghost-orange: #FFAA00;
            --dark-bg: #111122;
            --light-bg: #F5F5FF;
            --text-dark: #222244;
            --text-light: #EEEEFF;
            --shadow: 0 4px 12px rgba(0, 0, 50, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--light-bg);
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 204, 0, 0.05) 0%, transparent 20%),
                              radial-gradient(circle at 90% 80%, rgba(0, 153, 255, 0.05) 0%, transparent 20%);
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 3px solid var(--primary-yellow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: var(--pacman-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--pacman-yellow);
            border-radius: 50%;
            position: relative;
            animation: pacman-munch 0.5s infinite alternate;
        }
        @keyframes pacman-munch {
            0% { clip-path: polygon(0 0, 100% 50%, 0 100%, 50% 50%); }
            100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 50% 50%); }
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 204, 0, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--pacman-yellow);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            display: block;
            color: var(--text-light);
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 204, 0, 0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(0, 153, 255, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-blue);
        }
        .breadcrumb a:hover {
            color: var(--ghost-red);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--primary-yellow);
            padding-bottom: 1.5rem;
        }
        .article-title {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.9rem;
        }
        .article-meta i {
            color: var(--primary-blue);
            margin-right: 5px;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            color: var(--primary-blue);
            font-size: 1.8rem;
            margin: 2rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--primary-blue);
        }
        h3 {
            color: var(--ghost-red);
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            border-left: 4px solid var(--primary-yellow);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 3px solid var(--primary-yellow);
        }
        .game-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        .game-image:hover img {
            transform: scale(1.02);
        }
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .platform-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary-blue);
            transition: var(--transition);
        }
        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 50, 0.2);
        }
        .platform-card h4 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn {
            display: inline-block;
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 1rem;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        .download-btn:hover {
            background-color: transparent;
            border-color: var(--primary-yellow);
            color: var(--primary-yellow);
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .sidebar-title {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-yellow);
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-blue);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--ghost-red);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #FFD700;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .vote-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .vote-btn:hover {
            background-color: var(--ghost-red);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-btn {
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .comment-btn:hover {
            background-color: var(--ghost-red);
            color: white;
        }
        .footer-links {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        .footer {
            background-color: #0A0A1A;
            color: var(--text-light);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 204, 0, 0.2);
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #AAAACC;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-light);
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary-yellow);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            .article {
                padding: 1.5rem;
            }
            .platform-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-widget {
                padding: 1.5rem;
            }
        }
        @media print {
            .header, .sidebar, .footer-links, .footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .article {
                box-shadow: none;
                padding: 0;
            }
        }
