        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-yellow: #FFCC00;
            --pacman-yellow: #FFE900;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-blue: #00B0FF;
            --ghost-orange: #FF9900;
            --dark-bg: #1A1A2E;
            --content-bg: #16213E;
            --text-light: #F0F0F0;
            --text-muted: #AAAAAA;
            --accent-blue: #0F3460;
            --border-color: #2D4059;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--content-bg) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--ghost-red);
            text-decoration: underline;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-yellow);
            backdrop-filter: blur(10px);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--pacman-yellow);
            text-shadow: 3px 3px 0 var(--ghost-red), 
                        6px 6px 0 rgba(0, 0, 0, 0.2);
            letter-spacing: 2px;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 0 var(--ghost-blue), 
                        6px 6px 0 rgba(0, 0, 0, 0.3);
        }
        .my-logo span {
            color: var(--ghost-red);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: var(--accent-blue);
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-yellow);
            background: none;
            border: none;
        }
        .breadcrumb {
            background-color: var(--accent-blue);
            padding: 1rem 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-muted);
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: rgba(22, 33, 62, 0.8);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .sidebar {
            background-color: rgba(22, 33, 62, 0.8);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 3px dashed var(--primary-yellow);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.4rem;
            margin-top: 3rem;
            padding-left: 1rem;
            border-left: 5px solid var(--ghost-red);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: var(--ghost-blue);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 2rem;
            color: var(--ghost-pink);
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-light);
            background-color: rgba(15, 52, 96, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-yellow);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 3px solid var(--primary-yellow);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.5rem;
            margin-bottom: 2.5rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.8rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .search-box {
            background-color: var(--accent-blue);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-box h3 {
            margin-top: 0;
            text-align: center;
            border: none;
            padding: 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--primary-yellow);
            border-radius: 8px 0 0 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--ghost-red);
            color: white;
        }
        .comments-section, .rating-section {
            background-color: rgba(15, 52, 96, 0.3);
            padding: 2.5rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--ghost-blue);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--primary-yellow);
        }
        .submit-btn {
            background-color: var(--primary-yellow);
            color: var(--dark-bg);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: var(--ghost-red);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        friend-links {
            display: block;
            background-color: var(--accent-blue);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        friend-links h3 {
            color: var(--ghost-pink);
            margin-bottom: 1.5rem;
        }
        .friend-links-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .friend-link-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .friend-link-item:hover {
            background-color: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        .site-footer {
            background-color: var(--dark-bg);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-yellow);
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .last-updated {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .my-logo {
                font-size: 2rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                border-radius: 8px;
                margin-top: 1rem;
            }
            .main-nav.active ul {
                display: flex;
            }
            .container {
                padding: 0 1rem;
            }
            .main-content {
                padding: 2rem 1.5rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .sidebar {
                position: static;
            }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .ghost-emoji {
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, rgba(15, 52, 96, 0.7), rgba(26, 26, 46, 0.7));
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-yellow);
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-yellow);
            margin-bottom: 0.5rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        .comparison-table th {
            background-color: var(--accent-blue);
            color: var(--primary-yellow);
            padding: 1.2rem;
            text-align: left;
        }
        .comparison-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-table tr:hover {
            background-color: rgba(255, 204, 0, 0.05);
        }
