:root {
            --primary-yellow: #FFEE58;
            --pacman-yellow: #FFFF00;
            --ghost-blue: #2196F3;
            --ghost-pink: #E91E63;
            --ghost-orange: #FF9800;
            --ghost-red: #F44336;
            --dark-bg: #0a0a2a;
            --darker-bg: #05051a;
            --text-light: #f0f0f0;
            --text-muted: #b0b0d0;
            --accent-border: #333366;
            --transition: all 0.3s ease;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            --border-radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background-color: var(--dark-bg);
            background-image:
                radial-gradient(circle at 15% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(233, 30, 99, 0.05) 0%, transparent 25%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .site-header {
            background-color: var(--darker-bg);
            border-bottom: 3px solid var(--primary-yellow);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--pacman-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
        }
        .logo-icon {
            width: 50px;
            height: 50px;
            background: conic-gradient(var(--pacman-yellow) 0deg 300deg, transparent 300deg);
            border-radius: 50%;
            position: relative;
        }
        .logo-icon::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 35px;
            width: 8px;
            height: 8px;
            background-color: #000;
            border-radius: 50%;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: var(--primary-yellow);
            border-color: var(--primary-yellow);
            background-color: rgba(255, 238, 88, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-yellow);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-yellow);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        article {
            background-color: rgba(10, 10, 42, 0.8);
            border: 1px solid var(--accent-border);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--ghost-blue);
        }
        h1 {
            color: var(--pacman-yellow);
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            color: var(--text-muted);
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        section {
            margin-bottom: 3rem;
        }
        h2 {
            color: var(--ghost-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--ghost-blue);
        }
        h3 {
            color: var(--ghost-pink);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: rgba(33, 150, 243, 0.1);
            border-left: 5px solid var(--ghost-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .featured-image {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            border: 3px solid var(--primary-yellow);
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            color: var(--text-muted);
            font-style: italic;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--ghost-orange);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--ghost-orange);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--primary-yellow);
            border-bottom-style: solid;
        }
        .interactive-section {
            background-color: rgba(5, 5, 26, 0.7);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--ghost-red);
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--text-light);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid var(--accent-border);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            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, 238, 88, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--primary-yellow);
            transform: scale(1.2);
        }
        .btn {
            background-color: var(--ghost-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
        }
        .btn:hover {
            background-color: var(--ghost-pink);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        .btn-submit {
            background-color: var(--ghost-orange);
        }
        .btn-submit:hover {
            background-color: var(--ghost-red);
        }
        aside {
            background-color: rgba(5, 5, 26, 0.8);
            border-radius: var(--border-radius);
            padding: 2rem;
            border: 1px solid var(--accent-border);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: var(--primary-yellow);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--primary-yellow);
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .widget-list li::before {
            content: '▶';
            color: var(--ghost-pink);
            position: absolute;
            left: 0;
        }
        .widget-list a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .widget-list a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2.5rem;
            background-color: rgba(5, 5, 26, 0.9);
            border-radius: var(--border-radius);
            border: 1px solid var(--accent-border);
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 238, 88, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
            line-height: 1.4;
        }
        .web-link a:hover {
            color: var(--primary-yellow);
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            border-top: 2px solid var(--accent-border);
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 15px;
                top: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-header {
                padding: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
