body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .mobile-nav { display: none; background: #FF6B35; color: white; padding: 10px; text-align: center; cursor: pointer; }
        nav { background: #FF6B35; padding: 15px; margin-bottom: 30px; }
        nav ul { list-style: none; padding: 0; display: flex; justify-content: space-around; }
        nav li { color: white; font-weight: bold; }
        nav a { color: white; text-decoration: none; }
        h1 { color: #FF6B35; border-bottom: 3px solid #FF6B35; padding-bottom: 10px; }
        h2 { color: #FF9F1C; margin-top: 30px; }
        h3 { color: #2EC4B6; }
        .btn { display: inline-block; background: #FF6B35; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .game-image { width: 100%; max-width: 600px; margin: 20px 0; border-radius: 10px; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; }
        .tags { margin: 20px 0; }
        .tag { background: #FF9F1C; color: white; padding: 5px 10px; margin: 5px; border-radius: 5px; display: inline-block; }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; text-align: center; }
            .mobile-nav { display: block; }
            nav { display: none; }
        }
