:root {
            --primary-yellow: #FFCC00;
            --pacman-blue: #2A2A8B;
            --ghost-pink: #FF66B2;
            --ghost-cyan: #00FFFF;
            --ghost-red: #FF3333;
            --ghost-orange: #FF9933;
            --text-dark: #222222;
            --text-light: #F8F8F8;
            --bg-dark: #111122;
            --bg-card: #1A1A3A;
            --border-glow: rgba(255, 204, 0, 0.4);
            --shadow-glow: 0 0 15px var(--primary-yellow);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
            background-image: radial-gradient(circle at 15% 50%, rgba(42, 42, 139, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(255, 204, 0, 0.05) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--ghost-cyan);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-yellow);
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--pacman-blue);
            border-bottom: 3px solid var(--primary-yellow);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-shadow: 2px 2px 0 var(--ghost-red), 4px 4px 8px rgba(0, 0, 0, 0.7);
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo a {
            color: inherit;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-shadow: 3px 3px 0 var(--ghost-red), 0 0 20px var(--primary-yellow);
        }
        .logo-dot {
            width: 22px;
            height: 22px;
            background-color: var(--primary-yellow);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }
        .breadcrumb {
            padding: 1rem 0 0.5rem;
            font-size: 0.9rem;
            color: #aaa;
            background: linear-gradient(to right, var(--bg-card), transparent);
            border-radius: 0 5px 5px 0;
            margin-bottom: 1rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: var(--primary-yellow);
        }
        .breadcrumb .separator {
            margin: 0 8px;
            color: var(--ghost-pink);
        }
        .nav-desktop {
            display: flex;
            gap: 1.8rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-card);
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-top: 1px solid var(--border-glow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--border-glow);
        }
        h1 {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            font-size: 0.95rem;
            color: #bbb;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            border: 3px solid var(--primary-yellow);
            box-shadow: var(--shadow-glow), 0 10px 30px rgba(0,0,0,0.7);
            margin: 2rem 0 3rem;
            transition: transform 0.5s;
        }
        .feature-image:hover {
            transform: scale(1.005);
        }
        .content-section {
            background-color: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-left: 5px solid var(--primary-yellow);
            box-shadow: 0 8px 25px rgba(0, 0, 20, 0.4);
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .content-section:hover {
            box-shadow: 0 12px 35px rgba(0, 0, 30, 0.6);
            transform: translateY(-5px);
        }
        h2 {
            color: var(--ghost-cyan);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.3);
        }
        h3 {
            color: var(--ghost-pink);
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--ghost-orange);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,204,0,0.1) 0%, rgba(255,204,0,0.05) 100%);
            border-left: 4px solid var(--primary-yellow);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-yellow);
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted currentColor;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(42, 42, 139, 0.2);
            border-radius: 10px;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: background 0.3s, transform 0.3s;
        }
        .link-list a:hover {
            background: rgba(255, 204, 0, 0.15);
            transform: translateX(5px);
        }
        .interactive-module {
            background: rgba(26, 26, 58, 0.8);
            border: 2px solid var(--border-glow);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-yellow);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        input, textarea, select {
            padding: 0.9rem 1.2rem;
            border-radius: 8px;
            border: 1px solid var(--pacman-blue);
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
            flex-grow: 1;
            min-width: 200px;
            transition: border 0.3s, box-shadow 0.3s;
        }
        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, .btn {
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--primary-yellow), #FF9900);
            color: var(--text-dark);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(135deg, #FFDD00, var(--primary-yellow));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 204, 0, 0.4);
        }
        textarea {
            min-height: 120px;
            width: 100%;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--primary-yellow);
        }
        .site-footer {
            background-color: #0A0A1A;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-yellow);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--ghost-cyan);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
            transition: padding-left 0.3s;
        }
        friend-link:last-child {
            border-bottom: none;
        }
        friend-link:hover {
            padding-left: 10px;
            border-bottom-color: var(--primary-yellow);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: center;
            font-size: 0.9rem;
            color: #999;
            margin-top: 1rem;
            padding: 0.5rem;
            background: rgba(0,0,0,0.2);
            border-radius: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .flex { display: flex; }
        .justify-center { justify-content: center; }
        .wrap { flex-wrap: wrap; }
