        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-yellow: #FFCC00;
            --pacman-yellow: #FFFF00;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-blue: #00FFFF;
            --ghost-orange: #FFB852;
            --dark-blue: #00008B;
            --text-dark: #222222;
            --text-light: #F8F9FA;
            --gray-bg: #F5F5F5;
            --border-color: #E0E0E0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--gray-bg);
            font-size: 18px;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #000033 100%);
            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(--pacman-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.05);
        }
        .my-logo i {
            color: var(--ghost-red);
            animation: pacman-eat 2s infinite;
        }
        @keyframes pacman-eat {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(30deg); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background-color: var(--primary-yellow);
            color: var(--dark-blue);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            background-color: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--dark-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--ghost-red);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .content-area {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        h1 {
            color: var(--dark-blue);
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--primary-yellow);
            padding-left: 1rem;
        }
        h2 {
            color: var(--dark-blue);
            font-size: 2.2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-yellow);
        }
        h3 {
            color: var(--dark-blue);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: var(--ghost-red);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: var(--dark-blue);
            font-weight: 700;
        }
        em {
            color: var(--ghost-red);
            font-style: italic;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.2);
            padding: 2rem;
            border-left: 4px solid var(--primary-yellow);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.02);
        }
        .content-link {
            color: var(--ghost-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted var(--ghost-blue);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--dark-blue);
            border-bottom: 2px solid var(--primary-yellow);
        }
        .search-form, .comment-form, .rating-form {
            background-color: var(--gray-bg);
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark-blue);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            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.2);
        }
        button {
            background: linear-gradient(135deg, var(--primary-yellow) 0%, #FF9900 100%);
            color: var(--dark-blue);
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            direction: rtl;
        }
        .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);
        }
        .comment {
            background-color: white;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-yellow);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--dark-blue);
            font-weight: 600;
        }
        .site-footer {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #000033 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 6px;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 204, 0, 0.3);
            transform: translateX(10px);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav a {
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area {
                padding: 2rem 1rem;
            }
        }
        .update-time {
            color: var(--ghost-red);
            font-weight: 600;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
            margin: 3rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #000033 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-yellow);
            display: block;
        }
