        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-yellow: #FFCC00;
            --primary-blue: #1A0A5E;
            --pacman-yellow: #FFFF00;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFB852;
            --text-dark: #222222;
            --text-light: #F5F5F5;
            --bg-light: #FAFAFA;
            --bg-dark: #0A0A2A;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0A0A2A 100%);
            color: var(--text-light);
            padding: 1rem 5%;
            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.2rem;
            color: var(--pacman-yellow);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            color: #FFFFFF;
        }
        .my-logo i {
            color: var(--ghost-cyan);
            animation: spin 4s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop 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-desktop a:hover {
            background-color: rgba(255, 204, 0, 0.2);
            color: var(--primary-yellow);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--bg-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 204, 0, 0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #F0F0F0;
            padding: 0.8rem 5%;
            font-size: 0.9rem;
            border-bottom: 1px solid #DDD;
        }
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-widget h3 {
            margin-bottom: 1rem;
            color: var(--primary-blue);
            border-left: 4px solid var(--primary-yellow);
            padding-left: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #DDD;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary-yellow);
            color: var(--text-dark);
        }
        .rating-widget h3 {
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #DDD;
        }
        .star-rating .fas {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating .fas:hover,
        .star-rating .fas.active {
            color: var(--primary-yellow);
            transform: scale(1.2);
        }
        .rating-form input,
        .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #DDD;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        .submit-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: var(--primary-yellow);
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--primary-yellow);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem;
            padding-left: 15px;
            border-left: 5px solid var(--ghost-red);
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background: #FFF9E6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-yellow);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 204, 0, 0) 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .content-area a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted transparent;
            transition: var(--transition);
        }
        .content-area a:hover {
            color: var(--ghost-red);
            border-bottom-color: var(--ghost-red);
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border: 5px solid white;
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            border-left: 5px solid var(--ghost-cyan);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: #F8FDFF;
            font-style: italic;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        blockquote p:last-child {
            margin-bottom: 0;
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #EEE;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 1rem;
            border: 1px solid #DDD;
            border-radius: var(--border-radius);
            font-family: inherit;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment {
            background: #F9F9F9;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-blue);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #666;
        }
        .site-footer {
            background: var(--bg-dark);
            color: var(--text-light);
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: var(--pacman-yellow);
            margin-bottom: 1rem;
        }
        .footer-widget h4 {
            color: var(--primary-yellow);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links a {
            display: block;
            color: #CCC;
            text-decoration: none;
            margin-bottom: 0.7rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        friend-link a {
            color: #CCC;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link a:hover {
            color: var(--primary-yellow);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }
        .update-time {
            background: #FFF3CD;
            color: #856404;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 1.5rem 0;
            font-weight: bold;
            border: 1px solid #FFEAA7;
        }
        .ghost-animation {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        .ghost {
            width: 50px;
            height: 50px;
            border-radius: 50% 50% 0 0;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        .ghost::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 15px;
            background: inherit;
            clip-path: polygon(0% 0%, 20% 100%, 40% 0%, 60% 100%, 80% 0%, 100% 100%);
        }
        .blinky { background: var(--ghost-red); animation-delay: 0s; }
        .pinky { background: var(--ghost-pink); animation-delay: 0.5s; }
        .inky { background: var(--ghost-cyan); animation-delay: 1s; }
        .clyde { background: var(--ghost-orange); animation-delay: 1.5s; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        @media (max-width: 1100px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
            .widget {
                margin-bottom: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            .main-container {
                padding: 0 3%;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 1rem;
            }
            .featured-image {
                margin: 1rem 0;
            }
        }
        @media print {
            .site-header, .sidebar, .comment-section, .site-footer {
                display: none;
            }
            .main-container {
                grid-template-columns: 1fr;
                margin: 0;
                padding: 0;
            }
            .content-area {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
