:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #0000AA;
            --ghost-pink: #FF66B2;
            --ghost-cyan: #00FFFF;
            --ghost-red: #FF3333;
            --ghost-orange: #FF9900;
            --dark-bg: #111122;
            --light-bg: #F0F0FA;
            --text-dark: #222244;
            --text-light: #EEEEFF;
            --shadow: 0 5px 15px rgba(0, 0, 50, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--light-bg) 0%, #e0e0ff 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 1.5rem 0;
            border-bottom: 5px solid var(--primary-yellow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.5rem;
            text-decoration: none;
            color: var(--primary-yellow);
            text-shadow: 0 0 10px var(--primary-yellow), 3px 3px 0 var(--pacman-blue);
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px #FFEE00, 5px 5px 0 var(--pacman-blue);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: var(--primary-yellow);
            color: var(--dark-bg);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-yellow);
            font-size: 2rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background: rgba(0, 0, 50, 0.05);
            border-radius: 10px;
            margin: 1rem 0;
        }
        .breadcrumb a {
            color: var(--pacman-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        h1 {
            color: var(--pacman-blue);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            border-bottom: 5px dashed var(--primary-yellow);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--ghost-red);
            font-size: 2.5rem;
            margin: 3rem 0 1.5rem;
            padding-left: 1rem;
            border-left: 8px solid var(--ghost-red);
        }
        h3 {
            color: var(--ghost-cyan);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: var(--ghost-orange);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--pacman-blue);
            background: linear-gradient(90deg, #FFCC0020, #FFFFFF);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 8px solid var(--primary-yellow);
        }
        .highlight {
            background-color: #FFFFCC;
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: bold;
        }
        a.content-link {
            color: var(--ghost-pink);
            text-decoration: none;
            border-bottom: 1px dotted var(--ghost-pink);
            transition: var(--transition);
        }
        a.content-link:hover {
            color: var(--pacman-blue);
            border-bottom: 2px solid var(--pacman-blue);
        }
        img.feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            border: 8px solid var(--primary-yellow);
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        img.feature-img:hover {
            transform: scale(1.01);
        }
        blockquote {
            font-style: italic;
            border-left: 5px solid var(--ghost-cyan);
            padding-left: 2rem;
            margin: 2.5rem;
            background: #F8FFFF;
            padding: 2rem;
            border-radius: 0 15px 15px 0;
        }
        .search-box, .comment-form, .rating-form {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--pacman-blue);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        button {
            background: linear-gradient(to right, var(--primary-yellow), #FF9900);
            color: var(--dark-bg);
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--primary-yellow);
        }
        .site-footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 5px solid var(--ghost-pink);
            border-radius: 30px 30px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: var(--ghost-cyan);
            text-decoration: none;
            padding: 0.5rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        friend-link a:hover {
            background: rgba(0, 255, 255, 0.1);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444466;
            font-size: 0.9rem;
            color: #aaaacc;
        }
        @media (max-width: 1024px) {
            .content-main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                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;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
        @keyframes pacman-munch {
            0% { transform: rotate(0deg); }
            50% { transform: rotate(45deg); }
            100% { transform: rotate(0deg); }
        }
        .pacman-icon {
            display: inline-block;
            animation: pacman-munch 0.5s infinite;
            color: var(--primary-yellow);
        }
        .last-updated {
            background: #E8F4FF;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            margin: 2rem 0;
            border-left: 5px solid var(--ghost-cyan);
        }
