body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF6B35; font-size: 2.5em; text-align: center; }
        h2 { color: #0077B6; border-bottom: 2px solid #FFB703; padding-bottom: 5px; }
        h3 { color: #023E8A; }
        .logo { font-size: 2em; font-weight: bold; color: #FF6B35; text-align: center; margin: 20px 0; }
        .nav { background-color: #0077B6; padding: 10px; text-align: center; position: relative; }
        .nav-mobile { display: none; }
        .nav-links { display: flex; justify-content: center; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; background: #FF6B35; color: white; border: none; padding: 10px; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .btn { display: inline-block; background: #FF6B35; color: white; padding: 10px 20px; margin: 10px 0; text-decoration: none; border-radius: 5px; }
        .game-stats { background: #f0f0f0; padding: 15px; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tags a { background: #0077B6; color: white; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 3px; }
        .footer { text-align: center; margin-top: 40px; padding: 20px; background: #333; color: white; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; position: absolute; right: 10px; top: 10px; }
        }
