:root {
            --primary-yellow: #FFEA00;
            --pacman-blue: #1A1A8F;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFB852;
            --dark-bg: #0A0A2A;
            --light-bg: #F0F8FF;
            --text-dark: #222;
            --text-light: #EEE;
            --grid-gap: 1.5rem;
            --border-radius: 12px;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        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%, #e6f0ff 100%);
            overflow-x: hidden;
        }
        .site-header {
            background: 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.8rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary-yellow);
            text-shadow: 3px 3px 0 var(--pacman-blue), 0 0 15px rgba(255, 234, 0, 0.7);
            letter-spacing: -1px;
            transition: var(--transition);
            position: relative;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.05);
            color: #FFF;
            text-shadow: 4px 4px 0 var(--ghost-red), 0 0 20px rgba(255, 234, 0, 0.9);
        }
        .my-logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--ghost-red), var(--ghost-cyan), var(--ghost-pink));
            border-radius: 2px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover, .main-nav a:focus {
            background: var(--primary-yellow);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-yellow);
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(255, 234, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--primary-yellow);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: var(--grid-gap);
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 5px dotted var(--primary-yellow);
        }
        h1 {
            font-size: 3.5rem;
            color: var(--pacman-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 0px rgba(255, 234, 0, 0.4);
        }
        h2 {
            font-size: 2.5rem;
            color: var(--ghost-red);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--ghost-cyan);
        }
        h3 {
            font-size: 2rem;
            color: var(--ghost-pink);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: var(--ghost-orange);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--pacman-blue);
            background: rgba(255, 234, 0, 0.1);
            padding: 1.5rem;
            border-left: 6px solid var(--primary-yellow);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        strong {
            color: var(--ghost-red);
            font-weight: 800;
        }
        em {
            color: var(--pacman-blue);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(26, 26, 143, 0.05), rgba(255, 234, 0, 0.05));
            border: 2px dashed var(--primary-yellow);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            border: 8px solid var(--primary-yellow);
            box-shadow: var(--shadow);
            display: block;
            margin: 2.5rem auto;
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: rotate(1deg) scale(1.01);
            border-color: var(--ghost-red);
        }
        .internal-link {
            color: var(--pacman-blue);
            text-decoration: underline wavy var(--primary-yellow);
            font-weight: 600;
            transition: var(--transition);
        }
        .internal-link:hover {
            color: var(--ghost-red);
            text-decoration: underline solid var(--ghost-red);
            background-color: rgba(255, 234, 0, 0.2);
            padding: 2px 4px;
            border-radius: 4px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--pacman-blue);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            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, 234, 0, 0.3);
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-yellow), #FFD700);
            color: var(--dark-bg);
            border: none;
            padding: 1rem 1.8rem;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            text-decoration: none;
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(255, 234, 0, 0.4);
            background: linear-gradient(to right, #FFD700, var(--primary-yellow));
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            margin: 1rem 0;
        }
        .stars span {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars span:hover, .stars span.active {
            color: var(--primary-yellow);
            transform: scale(1.2);
        }
        .update-time {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            font-style: italic;
            margin-top: 1rem;
        }
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-links h4 {
            color: var(--primary-yellow);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .footer-links a:hover {
            color: var(--primary-yellow);
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            border-left: 5px solid var(--primary-yellow);
        }
        friend-link a {
            color: var(--primary-yellow);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--dark-bg);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-content, .breadcrumb {
                padding: 0 1rem;
            }
            article {
                padding: 2rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .my-logo {
                font-size: 2.2rem;
            }
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        .ghost {
            display: inline-block;
            transition: var(--transition);
        }
        .ghost:hover {
            transform: translateY(-8px);
        }
