/* Critical CSS - Inlined for performance */
        :root {
            --primary-color: #1d4ed8;
            --secondary-color: #0ea5e9;
            --accent-color: #f59e0b;
            --wiki-bg: #f8fafc;
            --wiki-border: #e2e8f0;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #334155;
            background-color: #f8fafc;
        }
        
        .wiki-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .content-section {
            padding: 2rem;
            border-bottom: 1px solid var(--wiki-border);
        }
        
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .hamburger span {
            height: 3px;
            width: 25px;
            background: var(--primary-color);
            margin: 3px 0;
            border-radius: 2px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .social-share button {
            transition: transform 0.2s;
        }
        
        .social-share button:hover {
            transform: translateY(-2px);
        }
        
        .rating-stars {
            color: #fbbf24;
        }
        
        .game-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        /* Media queries for responsive design */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 1rem;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .content-section {
                padding: 1rem;
            }
            
            .game-image {
                margin-bottom: 1rem;
            }
        }
        
        /* Print styles */
        @media print {
            .no-print {
                display: none !important;
            }
            
            body {
                background: white;
                color: black;
            }
            
            .wiki-container {
                box-shadow: none;
            }
        }

