:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #1E22AA;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFB852;
            --dark-bg: #0A0A2A;
            --light-bg: #F5F5FF;
            --text-dark: #222222;
            --text-light: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --border-radius: 8px;
            --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.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        header {
            background-color: var(--dark-bg);
            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;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        .my-logo i {
            font-size: 2rem;
            animation: spin 4s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary-yellow);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--primary-yellow);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        main {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .search-box {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--dark-bg), var(--pacman-blue));
            border-radius: var(--border-radius);
        }
        .search-box h3 {
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            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: #FFD700;
        }
        h1 {
            color: var(--pacman-blue);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--primary-yellow);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--ghost-red);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--ghost-red);
        }
        h3 {
            color: var(--pacman-blue);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--ghost-cyan);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .intro {
            font-size: 1.2rem;
            background: linear-gradient(to right, rgba(255, 204, 0, 0.1), transparent);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 2.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-yellow);
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .quote {
            font-style: italic;
            color: var(--pacman-blue);
            border-left: 3px solid var(--ghost-cyan);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }
        .featured-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);
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        a {
            color: var(--pacman-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-red);
            text-decoration: underline;
        }
        .content-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(30, 34, 170, 0.05);
            border-radius: var(--border-radius);
        }
        .content-links a {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .content-links a:hover {
            background: var(--primary-yellow);
            transform: translateY(-2px);
            text-decoration: none;
        }
        .interactive-section {
            background: var(--dark-bg);
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .active {
            color: var(--primary-yellow);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        button[type="submit"] {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        button[type="submit"]:hover {
            background-color: #FFD700;
            transform: translateY(-2px);
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .friend-links a {
            color: var(--text-light);
            transition: var(--transition);
        }
        .friend-links a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0.5rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                padding: 1rem;
                text-align: center;
                background: rgba(255, 255, 255, 0.1);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 1rem;
            }
            main, aside {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: var(--border-radius);
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: var(--border-radius);
                padding: 0.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.5s ease-out;
        }
        .blinky { color: var(--ghost-red); }
        .pinky { color: var(--ghost-pink); }
        .inky { color: var(--ghost-cyan); }
        .clyde { color: var(--ghost-orange); }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .bold { font-weight: bold; }
        .emoji { font-size: 1.2em; }
