        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #1A1A8F;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFB852;
            --dark-bg: #111;
            --light-bg: #F8F9FA;
            --text-dark: #222;
            --text-light: #EEE;
            --shadow: 0 4px 12px rgba(0,0,0,0.15);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--light-bg) 0%, #E6E6FA 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--pacman-blue);
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-shadow: 3px 3px 0 var(--primary-yellow);
            border-bottom: 5px dashed var(--primary-yellow);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 6px solid var(--ghost-red);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--ghost-pink);
            margin-top: 2rem;
        }
        h4 {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: var(--ghost-cyan);
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: var(--ghost-red);
            font-weight: 900;
        }
        em {
            color: var(--ghost-orange);
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: var(--dark-bg);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: 0.5rem;
        }
        .my-logo::before {
            content: '●';
            color: var(--primary-yellow);
            animation: pacman-mouth 0.6s infinite alternate;
        }
        @keyframes pacman-mouth {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(45deg); }
        }
        .my-logo span {
            color: white;
            text-shadow: 0 0 10px var(--primary-yellow);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }
        .main-nav a:hover {
            background: var(--primary-yellow);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }
        .main-nav a::after {
            content: '•';
            color: var(--ghost-cyan);
            position: absolute;
            right: -10px;
        }
        .main-nav a:last-child::after {
            display: none;
        }
        .breadcrumb {
            background: linear-gradient(90deg, var(--ghost-pink), var(--ghost-cyan));
            padding: 0.8rem 1.5rem;
            margin-top: 0.5rem;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb a {
            color: var(--pacman-blue);
            text-decoration: none;
            font-weight: 600;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            padding: 3rem 0;
            background: white;
            border-radius: 20px;
            margin: 2rem auto;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-yellow), var(--ghost-red), var(--ghost-pink), var(--ghost-cyan), var(--ghost-orange));
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px dotted var(--primary-yellow);
            color: #666;
            font-size: 0.95rem;
        }
        .interactive-section {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 3px solid var(--primary-yellow);
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--pacman-blue);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #CCC;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button {
            background: linear-gradient(135deg, var(--primary-yellow), var(--ghost-orange));
            color: var(--dark-bg);
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        button:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #DDD;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--primary-yellow);
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 8px solid var(--primary-yellow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.05);
        }
        .content-links {
            display: inline-block;
            color: var(--ghost-red);
            text-decoration: none;
            border-bottom: 2px dashed var(--ghost-cyan);
            padding-bottom: 2px;
            transition: var(--transition);
        }
        .content-links:hover {
            color: var(--pacman-blue);
            border-bottom-style: solid;
            background: rgba(255, 204, 0, 0.1);
        }
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: var(--primary-yellow);
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            transition: var(--transition);
        }
        friend-link a:hover {
            background: rgba(255, 204, 0, 0.2);
            padding-left: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #AAA;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: rgba(0,0,0,0.95);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 15px 15px;
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav a::after {
                display: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .ghost-animation {
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .section-spacing {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid #EEE;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(26, 26, 143, 0.05));
            border-left: 5px solid var(--primary-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: var(--pacman-blue);
            text-align: center;
            margin: 2.5rem auto;
            padding: 2rem;
            max-width: 800px;
            background: rgba(255, 184, 255, 0.1);
            border-radius: 15px;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--ghost-red);
            position: absolute;
            opacity: 0.3;
        }
        .quote::before {
            top: 0;
            left: 1rem;
        }
        .quote::after {
            bottom: -1rem;
            right: 1rem;
        }
