        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-yellow: #FFFF00;
            --pacman-yellow: #FFCC00;
            --ghost-red: #FF0000;
            --ghost-pink: #FFB8FF;
            --ghost-cyan: #00FFFF;
            --ghost-orange: #FFB851;
            --maze-blue: #1A1A5E;
            --text-light: #F8F8F8;
            --text-gray: #CCCCCC;
            --bg-dark: #0A0A2A;
            --card-bg: #151538;
            --accent-purple: #9D00FF;
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            --max-width: 1200px;
        }
        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(--bg-dark);
            background-image: radial-gradient(circle at 10% 20%, rgba(42, 42, 120, 0.8) 0%, transparent 20%),
                              radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.4) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-yellow);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: white;
            text-shadow: 0 0 8px var(--primary-yellow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 2.5rem;
            color: var(--primary-yellow);
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 10%;
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
            border-radius: 2px;
        }
        .site-header {
            background-color: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            border-bottom: 2px solid var(--accent-purple);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-yellow);
            text-transform: uppercase;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo-icon {
            color: var(--ghost-red);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            position: relative;
        }
        .nav-desktop a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::before {
            width: 80%;
        }
        .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(--card-bg);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
            border-top: 1px solid var(--accent-purple);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: rgba(21, 21, 56, 0.8);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--primary-yellow);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 10px;
        }
        .hero {
            text-align: center;
            padding: 100px 0;
            background: linear-gradient(rgba(26, 26, 94, 0.9), rgba(10, 10, 42, 0.9)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-radius: var(--border-radius);
            margin: 20px auto;
            max-width: var(--max-width);
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-yellow);
            text-shadow: 0 0 15px rgba(255, 255, 0, 0.7);
            animation: fadeInUp 1s ease;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-gray);
        }
        .search-bar {
            max-width: 600px;
            margin: 40px auto;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-bar h3 {
            margin-bottom: 1rem;
            color: var(--primary-yellow);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--accent-purple);
            border-radius: 50px 0 0 50px;
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: var(--primary-yellow);
        }
        .search-btn {
            background: linear-gradient(45deg, var(--accent-purple), var(--ghost-cyan));
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(45deg, var(--primary-yellow), var(--ghost-orange));
            transform: scale(1.05);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: var(--card-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary-yellow);
        }
        .article-section {
            margin-bottom: 60px;
        }
        .article-section h2 {
            color: var(--ghost-cyan);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(0, 255, 255, 0.3);
        }
        .article-section h3 {
            color: var(--ghost-pink);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        .article-section p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-section b, strong {
            color: var(--primary-yellow);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(157, 0, 255, 0.1));
            border-left: 5px solid var(--primary-yellow);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .gameplay-image {
            margin: 30px auto;
            max-width: 800px;
            border: 3px solid var(--accent-purple);
            box-shadow: 0 0 30px rgba(157, 0, 255, 0.5);
            transition: var(--transition);
        }
        .gameplay-image:hover {
            transform: scale(1.02);
            box-shadow: 0 0 40px rgba(255, 204, 0, 0.6);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .link-in-article {
            background: rgba(255, 255, 0, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .link-in-article:hover {
            background: rgba(255, 255, 0, 0.3);
        }
        .side-card {
            background: var(--card-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border-top: 5px solid var(--ghost-red);
        }
        .side-card h3 {
            color: var(--ghost-red);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .side-card ul {
            list-style: none;
        }
        .side-card li {
            padding: 12px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .side-card li:last-child {
            border-bottom: none;
        }
        .interactive-box {
            background: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border: 2px solid var(--accent-purple);
        }
        .interactive-box h3 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #444;
            margin: 10px 0;
        }
        .star-rating label {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input {
            display: none;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--primary-yellow);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-light);
        }
        .form-input, .form-textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-yellow);
            background: rgba(255,255,255,0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            align-self: flex-start;
            background: linear-gradient(45deg, var(--ghost-red), var(--ghost-orange));
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            background: linear-gradient(45deg, var(--primary-yellow), var(--ghost-orange));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
        }
        .footer-links {
            background: var(--card-bg);
            padding: 50px 0;
            margin-top: 60px;
            border-top: 3px solid var(--accent-purple);
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .web-link:hover {
            border-left-color: var(--primary-yellow);
            background: rgba(255,255,255,0.08);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--text-gray);
            display: block;
            font-size: 1.05rem;
        }
        .web-link a:hover {
            color: var(--primary-yellow);
        }
        .site-footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-gray);
            font-size: 0.95rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .site-footer a {
            color: var(--primary-yellow);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
            margin: 40px 0;
            border: none;
        }
        @media (max-width: 768px) {
            .section-title { font-size: 2.2rem; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .content-grid, .main-article, .side-card { padding: 25px; }
            .article-section h2 { font-size: 1.8rem; }
            .article-section h3 { font-size: 1.5rem; }
        }
