body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1, h2, h3 { color: #e67e22; }
        h1 { font-size: 2.5em; }
        h2 { font-size: 1.8em; margin-top: 30px; }
        h3 { font-size: 1.4em; margin-top: 25px; }
        .nav { background: #f39c12; padding: 10px; display: flex; justify-content: space-between; align-items: center; }
        .nav-mobile { display: none; }
        .logo { font-weight: bold; font-size: 1.5em; color: white; text-decoration: none; }
        .nav-links a { color: white; margin-left: 15px; text-decoration: none; }
        .btn { display: inline-block; background: #e67e22; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; }
        .game-img { width: 100%; max-width: 600px; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #f1c40f; color: #333; padding: 5px 10px; margin-right: 5px; border-radius: 3px; }
        .footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #eee; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .nav-mobile { display: block; }
            .nav { flex-direction: column; }
            .nav-links { margin-top: 10px; }
        }
