        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #2A2A8B;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFB852;
            --dark-bg: #111827;
            --light-bg: #F8FAFC;
            --text-dark: #1F2937;
            --text-light: #E5E7EB;
            --border-color: #D1D5DB;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--pacman-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #fff;
            transform: scale(1.03);
        }
        .my-logo i {
            font-size: 2.5rem;
            animation: spin 4s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .breadcrumb {
            background-color: #374151;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            color: #9CA3AF;
        }
        .breadcrumb a {
            color: #E5E7EB;
        }
        .breadcrumb a:hover {
            color: var(--primary-yellow);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
            color: #6B7280;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-yellow);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 992px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background-color: var(--dark-bg);
            padding: 2rem 1.5rem;
            transition: right 0.4s ease;
            z-index: 1001;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #4B5563;
        }
        .mobile-nav-close {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .mobile-nav-links a {
            color: var(--text-light);
            font-size: 1.2rem;
            padding: 0.5rem;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        .mobile-nav-links a:hover {
            background-color: #374151;
            text-decoration: none;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
        }
        .overlay.active {
            display: block;
        }
        .search-section {
            background: linear-gradient(135deg, var(--pacman-blue), #1E1E5A);
            padding: 2.5rem 0;
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }
        .search-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--primary-yellow);
        }
        .search-form {
            max-width: 700px;
            margin: 1.5rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background-color: var(--ghost-red);
            color: white;
            border: none;
            padding: 0 2.2rem;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #CC0000;
        }
        main {
            flex-grow: 1;
            padding-bottom: 3rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px dashed var(--border-color);
        }
        .article-header h1 {
            font-size: 3.2rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-header .meta {
            color: #6B7280;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .article-header .meta i {
            margin-right: 0.5rem;
            color: var(--pacman-blue);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            color: var(--pacman-blue);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-yellow);
        }
        .article-content h3 {
            color: var(--ghost-red);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            color: #555;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: var(--pacman-blue);
            font-weight: 700;
        }
        .article-content em {
            color: #666;
            font-style: italic;
        }
        .article-content blockquote {
            border-left: 5px solid var(--primary-yellow);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background-color: #FEFCE8;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background: linear-gradient(to right, #EFF6FF, #DBEAFE);
            border-left: 5px solid var(--pacman-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-tip {
            background-color: #F0FDF4;
            border: 1px solid #86EFAC;
            padding: 1.2rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .game-tip i {
            color: #10B981;
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 5px solid white;
            margin: 0 auto;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .image-float-left {
            float: left;
            margin: 0 1.5rem 1rem 0;
            max-width: 300px;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .image-float-left {
                float: none;
                margin: 1.5rem auto;
                display: block;
            }
        }
        .related-links {
            background-color: #F3F4F6;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .related-links h3 {
            color: var(--dark-bg);
            margin-top: 0;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            background-color: white;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--primary-yellow);
            transition: transform 0.2s;
        }
        .related-links li:hover {
            transform: translateX(5px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .sidebar {
                order: -1;
            }
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--pacman-blue);
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #D1D5DB;
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .stars .active {
            color: var(--primary-yellow);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.9rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--pacman-blue);
        }
        .form-btn {
            background-color: var(--pacman-blue);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
        }
        .form-btn:hover {
            background-color: #1E1E5A;
        }
        .current-rating {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1rem;
            font-size: 1.2rem;
        }
        .current-rating .average {
            color: var(--primary-yellow);
            font-weight: 700;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-widget h4 {
            color: var(--primary-yellow);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        .footer-widget h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--ghost-red);
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #CBD5E1;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #1F2937;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-yellow);
        }
        friend-link a {
            color: #E5E7EB;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            color: #9CA3AF;
            font-size: 0.9rem;
        }
        .last-updated {
            color: var(--primary-yellow);
            font-weight: 600;
            margin-top: 0.5rem;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
            .article-content h3 {
                font-size: 1.6rem;
            }
            .search-section h2 {
                font-size: 1.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
