:root {
            --primary-yellow: #FFFC40;
            --pacman-pink: #FF69B4;
            --ghost-red: #FF0000;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFA500;
            --ghost-pink: #FFB6C1;
            --dark-navy: #0A0A2A;
            --grid-blue: #1E1E5A;
            --text-light: #F0F0FF;
            --text-muted: #B8B8D8;
            --card-bg: rgba(30, 30, 90, 0.7);
            --border-glow: rgba(255, 252, 64, 0.3);
        }
        * {
            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.7;
            color: var(--text-light);
            background: linear-gradient(var(--dark-navy) 0%, #000033 100%);
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 15% 50%, rgba(30, 30, 90, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 20%),
                linear-gradient(to right, transparent 98%, rgba(255, 252, 64, 0.05) 100%),
                linear-gradient(to bottom, transparent 98%, rgba(0, 255, 255, 0.05) 100%);
            background-size: 400px 400px, 300px 300px, 40px 40px, 40px 40px;
            z-index: -1;
            pointer-events: none;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--pacman-pink);
            text-shadow: 0 0 8px var(--pacman-pink);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 42, 0.95);
            border-bottom: 2px solid var(--primary-yellow);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
        }
        .logo a {
            color: var(--primary-yellow);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: conic-gradient(var(--primary-yellow) 0deg, transparent 90deg, transparent 180deg, var(--primary-yellow) 270deg);
            border-radius: 50%;
            position: relative;
            animation: spin 4s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            padding: 8px 5px;
            font-weight: 600;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--pacman-pink);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--primary-yellow);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .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);
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 42, 0.98);
            border-top: 1px solid var(--grid-blue);
            flex-direction: column;
            padding: 20px;
            display: none;
            z-index: 999;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 252, 64, 0.1);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            border-bottom: 1px dashed var(--grid-blue);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-yellow);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border-glow);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--ghost-cyan);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-yellow);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .hero-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
            border: 3px solid var(--primary-yellow);
            box-shadow: 0 0 20px rgba(255, 252, 64, 0.3);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .hero-image:hover img {
            transform: scale(1.03);
        }
        .content-section {
            margin-bottom: 40px;
        }
        .content-section h2 {
            font-size: 2rem;
            color: var(--pacman-pink);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--ghost-pink);
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: var(--ghost-cyan);
            margin: 25px 0 15px;
        }
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 252, 64, 0.1);
            border-left: 4px solid var(--primary-yellow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .ghost-tip {
            background-color: rgba(0, 255, 255, 0.05);
            border: 1px solid var(--ghost-cyan);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            position: relative;
        }
        .ghost-tip::before {
            content: '👻 PRO TIP';
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--dark-navy);
            color: var(--ghost-cyan);
            padding: 0 10px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: rgba(30, 30, 90, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }
        .comparison-table th {
            background-color: var(--ghost-red);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid var(--grid-blue);
        }
        .comparison-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.03);
        }
        .comparison-table tr:hover {
            background-color: rgba(255, 252, 64, 0.05);
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border-glow);
            padding: 25px;
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-bottom: 10px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--grid-blue);
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--ghost-red);
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #cc0000;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 8px;
            direction: rtl;
            margin-bottom: 10px;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: var(--primary-yellow);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-muted);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--grid-blue);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--ghost-red), var(--pacman-pink));
            color: white;
            border: none;
            border-radius: 6px;
            padding: 15px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background-color: rgba(30, 30, 90, 0.5);
            border-radius: 8px;
            padding: 15px;
            border-left: 4px solid var(--primary-yellow);
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255, 252, 64, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-yellow);
        }
        .site-footer {
            background-color: rgba(5, 5, 20, 0.95);
            border-top: 2px solid var(--grid-blue);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .footer-col h4 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--grid-blue);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .article-card {
                padding: 20px;
            }
            .content-section h2 {
                font-size: 1.7rem;
            }
            .sidebar-widget {
                padding: 20px;
            }
        }
        @keyframes dotPulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }
        .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--primary-yellow);
            border-radius: 50%;
            margin: 0 2px;
            animation: dotPulse 1.5s infinite;
        }
        .dot:nth-child(2) {
            animation-delay: 0.2s;
        }
        .dot:nth-child(3) {
            animation-delay: 0.4s;
        }
        .internal-link {
            color: var(--ghost-cyan);
            border-bottom: 1px dotted var(--ghost-cyan);
            font-weight: 600;
        }
        .internal-link:hover {
            color: var(--primary-yellow);
            border-bottom-style: solid;
        }
