:root {
            --primary-yellow: #FFEE58;
            --pacman-yellow: #FFFF00;
            --ghost-red: #FF5252;
            --ghost-pink: #FF4081;
            --ghost-cyan: #18FFFF;
            --ghost-orange: #FF9800;
            --dark-blue: #0A2463;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #FAFAFA;
            --border-color: #E0E0E0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--dark-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-red);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--dark-blue);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--pacman-yellow);
            text-shadow: 2px 2px 0 var(--ghost-red);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: white;
        }
        .my-logo span {
            color: var(--ghost-cyan);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
        }
        nav a:hover, nav a.active {
            background-color: var(--pacman-yellow);
            color: var(--dark-blue);
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--pacman-yellow);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-blue);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 4px solid var(--pacman-yellow);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--ghost-red);
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        h3 {
            color: var(--ghost-pink);
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        h4 {
            color: var(--ghost-orange);
            margin-top: 25px;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: linear-gradient(to right, #fff8e1, #fff);
            padding: 20px;
            border-left: 5px solid var(--pacman-yellow);
            border-radius: var(--radius);
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fffde7;
            padding: 20px;
            border-radius: var(--radius);
            margin: 25px 0;
            border: 2px dashed var(--pacman-yellow);
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--radius);
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 5px solid var(--dark-blue);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .link-list a {
            background: var(--dark-blue);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
        }
        .link-list a:hover {
            background: var(--ghost-red);
            transform: translateY(-3px);
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .widget {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            color: var(--dark-blue);
            border-bottom: 2px solid var(--pacman-yellow);
            padding-bottom: 10px;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius) 0 0 var(--radius);
            outline: none;
        }
        .search-box button {
            background: var(--dark-blue);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .stars {
            color: var(--pacman-yellow);
            font-size: 1.5rem;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--ghost-red), var(--ghost-orange));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }
        .comment {
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
        }
        .comment-author {
            font-weight: bold;
            color: var(--dark-blue);
        }
        .comment-date {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--pacman-yellow);
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
        }
        friend-link a {
            color: var(--ghost-cyan);
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark-blue);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                margin-bottom: 10px;
            }
            h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 25px;
            }
        }
        @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(--pacman-yellow);
        }
        .last-updated {
            background-color: #e3f2fd;
            padding: 10px;
            border-radius: var(--radius);
            margin-top: 30px;
            text-align: center;
            font-style: italic;
        }
